Fix broken documentation links (#2952)

This commit is contained in:
Jeremiah Lowin 2026-01-19 23:17:29 -05:00 committed by GitHub
commit 3df38584cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
69 changed files with 179 additions and 179 deletions

View file

@ -17,7 +17,7 @@ Every code block in this tutorial is a complete, runnable example. You can copy
### Prerequisites
Make sure you have FastMCP installed. If not, follow the [installation guide](/getting-started/installation).
Make sure you have FastMCP installed. If not, follow the [installation guide](/v2/getting-started/installation).
```bash
pip install fastmcp
@ -152,7 +152,7 @@ Now you can run your server from the command line:
```bash
python my_mcp_server.py
```
This starts the server using the default **STDIO transport**, which is how clients like Claude Desktop communicate with local servers. To learn about other transports, like HTTP, see the [Running Your Server](/deployment/running-server) guide.
This starts the server using the default **STDIO transport**, which is how clients like Claude Desktop communicate with local servers. To learn about other transports, like HTTP, see the [Running Your Server](/v2/deployment/running-server) guide.
## The Complete Server
@ -191,8 +191,8 @@ if __name__ == "__main__":
You've successfully built an MCP server! From here, you can explore more advanced topics:
- [**Tools in Depth**](/servers/tools): Learn about asynchronous tools, error handling, and custom return types.
- [**Resources & Templates**](/servers/resources): Discover different resource types, including files and HTTP endpoints.
- [**Prompts**](/servers/prompts): Create reusable prompt templates for your LLM.
- [**Running Your Server**](/deployment/running-server): Deploy your server with different transports like HTTP.
- [**Tools in Depth**](/v2/servers/tools): Learn about asynchronous tools, error handling, and custom return types.
- [**Resources & Templates**](/v2/servers/resources): Discover different resource types, including files and HTTP endpoints.
- [**Prompts**](/v2/servers/prompts): Create reusable prompt templates for your LLM.
- [**Running Your Server**](/v2/deployment/running-server): Deploy your server with different transports like HTTP.