Skip to content

Commit 7de4c7a

Browse files
Merge branch 'main' into docs/tool-name-conflicts
2 parents 2fb4b32 + 118f620 commit 7de4c7a

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

docs/docs/concepts/transports.mdx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,7 @@ Use stdio when:
129129

130130
### Streamable HTTP
131131

132-
<Warning>
133-
134-
The SSE Transport has been [**replaced**](http://modelcontextprotocol.io/specification/2025-03-26/changelog#major-changes) with a more
135-
flexible [Streamable HTTP](http://modelcontextprotocol.io/specification/2025-03-26/basic/transports) transport. Refer to the [Specification](http://modelcontextprotocol.io/specification/2025-03-26/basic/transports)
136-
and latest SDKs for the most recent information.
137-
138-
</Warning>
139-
140-
SSE transport enables server-to-client streaming with HTTP POST requests for client-to-server communication.
132+
The Streamable HTTP transport uses HTTP POST requests for client-to-server communication and optional Server-Sent Events (SSE) streams for server-to-client communication.
141133

142134
Use Streamable HTTP when:
143135

docs/sdk/java/mcp-client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ client.executePrompt("echo", Map.of(
375375

376376
### Using Completion
377377

378-
As part of the [Completion capabilities](/specification/2025-03-26/server/utilities/completion), MCP provides a provides a standardized way for servers to offer argument autocompletion suggestions for prompts and resource URIs.
378+
As part of the [Completion capabilities](/specification/2025-03-26/server/utilities/completion), MCP provides a standardized way for servers to offer argument autocompletion suggestions for prompts and resource URIs.
379379

380380
Check the [Server Completion capabilities](/sdk/java/mcp-server#completion-specification) to learn how to enable and configure completions on the server side.
381381

schema/draft/schema.json

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

schema/draft/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ export interface ElicitResult extends Result {
13361336
* The submitted form data, only present when action is "accept".
13371337
* Contains values matching the requested schema.
13381338
*/
1339-
content?: { [key: string]: unknown };
1339+
content?: { [key: string]: string | number | boolean };
13401340
}
13411341

13421342
/* Client messages */

0 commit comments

Comments
 (0)