Skip to content

Commit d29e0e9

Browse files
committed
docs: Formatting of SSE server mounting example in README
1 parent d31edf9 commit d29e0e9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -360,9 +360,11 @@ from mcp.server.fastmcp import FastMCP
360360
mcp = FastMCP("My App")
361361

362362
# Mount the SSE server to the existing ASGI server
363-
app = Starlette(routes=[
364-
Mount('/', app=mcp.sse_app())
365-
])
363+
app = Starlette(
364+
routes=[
365+
Mount('/', app=mcp.sse_app()),
366+
]
367+
)
366368

367369
# or dynamically mount as host
368370
app.router.routes.append(Host('mcp.acme.corp', app=mcp.sse_app()))

0 commit comments

Comments
 (0)