Skip to content
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

Merged
merged 5 commits into from
Mar 19, 2025

Conversation

comfuture
Copy link
Contributor

@comfuture comfuture commented Mar 18, 2025

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.

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).
Kludex
Kludex previously approved these changes Mar 18, 2025
* 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
Kludex
Kludex previously approved these changes Mar 18, 2025
README.md Outdated
from fastapi import FastAPI
from mcp.server.fastmcp import FastMCP

app = FastAPI()
Copy link
Member

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?

Copy link
Contributor Author

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.

Kludex
Kludex previously approved these changes Mar 18, 2025
@Kludex Kludex merged commit a9aca20 into modelcontextprotocol:main Mar 19, 2025
3 checks passed
@Kludex
Copy link
Member

Kludex commented Mar 19, 2025

Thanks @comfuture :)

conorbranagan added a commit to conorbranagan/python-sdk that referenced this pull request Mar 26, 2025
@comfuture comfuture deleted the add-sse-mount-option branch April 2, 2025 09:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Option to Mount SSE Server to Existing ASGI Server
2 participants