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
Option to mount SSE server to existing ASGI server
Fixes#311
Add option to mount SSE server to an existing ASGI server.
* Add a new method `sse_app` in `src/mcp/server/fastmcp/server.py` to return an instance of the SSE server app.
* Update the `run_sse_async` method in `src/mcp/server/fastmcp/server.py` to use the new `sse_app` method.
* Update the documentation in `README.md` to include instructions on how to mount the SSE server to an existing ASGI server.
* Fix the example in `README.md` to use `app.mount('/', mcp.sse_app())` instead.
---
For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/modelcontextprotocol/python-sdk/issues/311?shareId=XXXX-XXXX-XXXX-XXXX).
-[Mounting to an Existing ASGI Server](#mounting-to-an-existing-asgi-server)
34
35
-[Examples](#examples)
35
36
-[Echo Server](#echo-server)
36
37
-[SQLite Explorer](#sqlite-explorer)
@@ -346,6 +347,21 @@ python server.py
346
347
mcp run server.py
347
348
```
348
349
350
+
### Mounting to an Existing ASGI Server
351
+
352
+
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.
353
+
354
+
```python
355
+
from fastapi import FastAPI
356
+
from mcp.server.fastmcp import FastMCP
357
+
358
+
app = FastAPI()
359
+
mcp = FastMCP("My App")
360
+
361
+
# Mount the SSE server to the existing ASGI server
0 commit comments