File tree Expand file tree Collapse file tree 6 files changed +22
-14
lines changed Expand file tree Collapse file tree 6 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 128
128
" links/sdks/kotlin" ,
129
129
" links/sdks/python" ,
130
130
" links/sdks/ruby" ,
131
+ " links/sdks/rust" ,
131
132
" links/sdks/swift" ,
132
133
" links/sdks/typescript"
133
134
]
241
242
" links/sdks/kotlin" ,
242
243
" links/sdks/python" ,
243
244
" links/sdks/ruby" ,
245
+ " links/sdks/rust" ,
244
246
" links/sdks/swift" ,
245
247
" links/sdks/typescript"
246
248
]
353
355
" links/sdks/kotlin" ,
354
356
" links/sdks/python" ,
355
357
" links/sdks/ruby" ,
358
+ " links/sdks/rust" ,
356
359
" links/sdks/swift" ,
357
360
" links/sdks/typescript"
358
361
]
468
471
" links/sdks/kotlin" ,
469
472
" links/sdks/python" ,
470
473
" links/sdks/ruby" ,
474
+ " links/sdks/rust" ,
471
475
" links/sdks/swift" ,
472
476
" links/sdks/typescript"
473
477
]
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Rust SDK
3
+ url : https://github.com/modelcontextprotocol/rust-sdk
4
+ icon : rust
5
+ ---
6
+
7
+ <Card
8
+ title = " Rust SDK"
9
+ href = " https://github.com/modelcontextprotocol/rust-sdk"
10
+ />
Original file line number Diff line number Diff line change @@ -78,11 +78,9 @@ sequenceDiagram
78
78
Sender->>Receiver: Method request with progressToken
79
79
80
80
Note over Sender,Receiver: Progress updates
81
- loop Progress Updates
82
- Receiver-->>Sender: Progress notification (0.2/1.0)
83
- Receiver-->>Sender: Progress notification (0.6/1.0)
84
- Receiver-->>Sender: Progress notification (1.0/1.0)
85
- end
81
+ Receiver-->>Sender: Progress notification (0.2/1.0)
82
+ Receiver-->>Sender: Progress notification (0.6/1.0)
83
+ Receiver-->>Sender: Progress notification (1.0/1.0)
86
84
87
85
Note over Sender,Receiver: Operation complete
88
86
Receiver->>Sender: Method response
Original file line number Diff line number Diff line change @@ -273,8 +273,7 @@ or data using a suitable [URI scheme](./resources#common-uri-schemes). Servers t
273
273
274
274
** Structured** content is returned as a JSON object in the ` structuredContent ` field of a result.
275
275
276
- For backwards compatibility, a tool that returns structured content SHOULD also return functionally equivalent unstructured content.
277
- (For example, serialized JSON can be returned in a ` TextContent ` block.)
276
+ For backwards compatibility, a tool that returns structured content SHOULD also return the serialized JSON in a TextContent block.
278
277
279
278
#### Output Schema
280
279
Original file line number Diff line number Diff line change @@ -78,11 +78,9 @@ sequenceDiagram
78
78
Sender->>Receiver: Method request with progressToken
79
79
80
80
Note over Sender,Receiver: Progress updates
81
- loop Progress Updates
82
- Receiver-->>Sender: Progress notification (0.2/1.0)
83
- Receiver-->>Sender: Progress notification (0.6/1.0)
84
- Receiver-->>Sender: Progress notification (1.0/1.0)
85
- end
81
+ Receiver-->>Sender: Progress notification (0.2/1.0)
82
+ Receiver-->>Sender: Progress notification (0.6/1.0)
83
+ Receiver-->>Sender: Progress notification (1.0/1.0)
86
84
87
85
Note over Sender,Receiver: Operation complete
88
86
Receiver->>Sender: Method response
Original file line number Diff line number Diff line change @@ -273,8 +273,7 @@ or data using a suitable [URI scheme](./resources#common-uri-schemes). Servers t
273
273
274
274
** Structured** content is returned as a JSON object in the ` structuredContent ` field of a result.
275
275
276
- For backwards compatibility, a tool that returns structured content SHOULD also return functionally equivalent unstructured content.
277
- (For example, serialized JSON can be returned in a ` TextContent ` block.)
276
+ For backwards compatibility, a tool that returns structured content SHOULD also return the serialized JSON in a TextContent block.
278
277
279
278
#### Output Schema
280
279
You can’t perform that action at this time.
0 commit comments