From 9cd2c42f4fde94403ddce504b6d5fb0709cd6e52 Mon Sep 17 00:00:00 2001 From: Conor Branagan Date: Wed, 26 Mar 2025 10:07:01 -0400 Subject: [PATCH] Fix typo in starlette import in README Small docs fix for https://github.com/modelcontextprotocol/python-sdk/pull/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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60b5a726..8b108435 100644 --- a/README.md +++ b/README.md @@ -357,7 +357,7 @@ You can mount the SSE server to an existing ASGI server using the `sse_app` meth ```python from starlette.applications import Starlette -from starlette.routes import Mount, Host +from starlette.routing import Mount, Host from mcp.server.fastmcp import FastMCP