Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
MCP Python SDK 使用指南和参考文档
pip install mcp
from mcp import McpServer server = McpServer("my-server") @server.resource("hello") async def hello(): return "Hello, MCP!" server.run()