-
Notifications
You must be signed in to change notification settings - Fork 755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to mount SSE server to existing ASGI server #312
Option to mount SSE server to existing ASGI server #312
Conversation
Fixes modelcontextprotocol#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).
* Add `sse_app` method to return an instance of the SSE server app * Update `run_sse_async` method to use the new `sse_app` method Update `README.md` to include instructions for mounting SSE server * Add section on mounting the SSE server to an existing ASGI server
README.md
Outdated
from fastapi import FastAPI | ||
from mcp.server.fastmcp import FastMCP | ||
|
||
app = FastAPI() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use starlette and link to the starlette docs about mounting instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. It seems more natural to use the Starlette example.
Thanks @comfuture :) |
Small docs fix for modelcontextprotocol#312. The [actual code](https://github.com/comfuture/python-sdk/blob/d29e0e9ca33445285c04bc53bcebdda3b1986181/src/mcp/server/fastmcp/server.py#L22-L23) uses `starlette.routing` which is the correct package name.
Fixes #311
Add option to mount SSE server to an existing ASGI server.
sse_app
insrc/mcp/server/fastmcp/server.py
to return an instance of the SSE server app.run_sse_async
method insrc/mcp/server/fastmcp/server.py
to use the newsse_app
method.README.md
to include instructions on how to mount the SSE server to an existing ASGI server.README.md
to useapp.mount('/', mcp.sse_app())
instead.For more details, open the Copilot Workspace session.