Skip to content

Commit 4b41eae

Browse files
committed
Add sse_app method and update run_sse_async method in server.py
* 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
1 parent ea05ee1 commit 4b41eae

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/mcp/server/fastmcp/server.py

-6
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,6 @@ async def run_stdio_async(self) -> None:
461461

462462
async def run_sse_async(self) -> None:
463463
"""Run the server using SSE transport."""
464-
from starlette.applications import Starlette
465-
from starlette.routing import Mount, Route
466-
467464
starlette_app = self.sse_app()
468465

469466
config = uvicorn.Config(
@@ -477,9 +474,6 @@ async def run_sse_async(self) -> None:
477474

478475
def sse_app(self) -> Starlette:
479476
"""Return an instance of the SSE server app."""
480-
from starlette.applications import Starlette
481-
from starlette.routing import Mount, Route
482-
483477
sse = SseServerTransport("/messages/")
484478

485479
async def handle_sse(request):

0 commit comments

Comments
 (0)