From ac7a90e0032e2dac5f94a8b8f16d6792bc97b3d7 Mon Sep 17 00:00:00 2001 From: Jerome Swannack Date: Tue, 9 Jun 2026 14:00:07 +0100 Subject: [PATCH] Fix 404 links in v1 README to renamed example files The v1 README (frozen on main) links to examples/snippets/servers/ fastmcp_quickstart.py and examples/fastmcp/icons_demo.py on the main branch, but those files were renamed there as part of the FastMCP -> MCPServer rename, so both links now 404. Point them at the v1.x branch, where the files still exist and match the documented v1 API. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 487d48bee4..2ea6271c6a 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ if __name__ == "__main__": mcp.run(transport="streamable-http") ``` -_Full example: [examples/snippets/servers/fastmcp_quickstart.py](https://github.com/modelcontextprotocol/python-sdk/blob/main/examples/snippets/servers/fastmcp_quickstart.py)_ +_Full example: [examples/snippets/servers/fastmcp_quickstart.py](https://github.com/modelcontextprotocol/python-sdk/blob/v1.x/examples/snippets/servers/fastmcp_quickstart.py)_ You can install this server in [Claude Code](https://docs.claude.com/en/docs/claude-code/mcp) and interact with it right away. First, run the server: @@ -625,7 +625,7 @@ def my_resource(): return "content" ``` -_Full example: [examples/fastmcp/icons_demo.py](https://github.com/modelcontextprotocol/python-sdk/blob/main/examples/fastmcp/icons_demo.py)_ +_Full example: [examples/fastmcp/icons_demo.py](https://github.com/modelcontextprotocol/python-sdk/blob/v1.x/examples/fastmcp/icons_demo.py)_ ### Images