49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Waiting to run
39 lines
925 B
Python
39 lines
925 B
Python
"""Basic example showing how to mount StreamableHTTP server in Starlette.
|
|
|
|
Run from the repository root:
|
|
uvicorn examples.snippets.servers.streamable_http_basic_mounting:app --reload
|
|
"""
|
|
|
|
import contextlib
|
|
|
|
from starlette.applications import Starlette
|
|
from starlette.routing import Mount
|
|
|
|
from mcp.server.mcpserver import MCPServer
|
|
|
|
# Create MCP server
|
|
mcp = MCPServer("My App")
|
|
|
|
|
|
@mcp.tool()
|
|
def hello() -> str:
|
|
"""A simple hello tool"""
|
|
return "Hello from MCP!"
|
|
|
|
|
|
# Create a lifespan context manager to run the session manager
|
|
@contextlib.asynccontextmanager
|
|
async def lifespan(app: Starlette):
|
|
async with mcp.session_manager.run():
|
|
yield
|
|
|
|
|
|
# Mount the StreamableHTTP server to the existing ASGI server
|
|
# Transport-specific options are passed to streamable_http_app()
|
|
app = Starlette(
|
|
routes=[
|
|
Mount("/", app=mcp.streamable_http_app(json_response=True)),
|
|
],
|
|
lifespan=lifespan,
|
|
)
|