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
For low level server with Streamable HTTP implementations, see:
@@ -445,7 +460,7 @@ The streamable HTTP transport supports:
445
460
446
461
### Mounting to an Existing ASGI Server
447
462
448
-
> **Note**: SSE transport is being superseded by streamable HTTP transport. Consider using streamable HTTP for production deployments.
463
+
> **Note**: SSE transport is being superseded by [Streamable HTTP transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http).
449
464
450
465
You can mount the SSE server to an existing ASGI server using the `sse_app` method. This allows you to integrate the SSE server with other ASGI applications.
451
466
@@ -679,7 +694,7 @@ if __name__ == "__main__":
679
694
680
695
### Writing MCP Clients
681
696
682
-
The SDK provides a high-level client interface for connecting to MCP servers using various transports:
697
+
The SDK provides a high-level client interface for connecting to MCP servers using various [transports](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports):
683
698
684
699
```python
685
700
from mcp import ClientSession, StdioServerParameters, types
@@ -743,7 +758,7 @@ if __name__ == "__main__":
743
758
asyncio.run(run())
744
759
```
745
760
746
-
Clients can also connect using streamable HTTP transport:
761
+
Clients can also connect using [Streamable HTTP transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http):
747
762
748
763
```python
749
764
from mcp.client.streamable_http import streamablehttp_client
0 commit comments