You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/concepts/architecture.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,8 +108,8 @@ The transport layer handles the actual communication between clients and servers
108
108
- Uses standard input/output for communication
109
109
- Ideal for local processes
110
110
111
-
2.**HTTP with SSE transport**
112
-
- Uses Server-Sent Events for server-to-client messages
111
+
2.**Streamable HTTP transport**
112
+
- Uses HTTP with optional Server-Sent Events for streaming
113
113
- HTTP POST for client-to-server messages
114
114
115
115
All transports use [JSON-RPC](https://www.jsonrpc.org/) 2.0 to exchange messages. See the [specification](/specification/) for detailed information about the Model Context Protocol message format.
@@ -295,7 +295,7 @@ Here's a basic example of implementing an MCP server:
295
295
- Simple process management
296
296
297
297
2.**Remote communication**
298
-
- Use SSE for scenarios requiring HTTP compatibility
298
+
- Use Streamable HTTP for scenarios requiring HTTP compatibility
299
299
- Consider security implications including authentication and authorization
@@ -315,7 +315,10 @@ Without these protections, attackers could use DNS rebinding to interact with lo
315
315
### Server-Sent Events (SSE) - Deprecated
316
316
317
317
<Note>
318
-
SSE as a standalone transport is deprecated as of protocol version 2024-11-05. It has been replaced by Streamable HTTP, which incorporates SSE as an optional streaming mechanism. For backwards compatibility information, see the [backwards compatibility](#backwards-compatibility) section below.
318
+
SSE as a standalone transport is deprecated as of protocol version 2024-11-05.
319
+
It has been replaced by Streamable HTTP, which incorporates SSE as an optional
320
+
streaming mechanism. For backwards compatibility information, see the
0 commit comments