> ## Documentation Index
> Fetch the complete documentation index at: https://mcp.wiki/llms.txt
> Use this file to discover all available pages before exploring further.

# Python SDK

> MCP Python SDK 使用指南和参考文档

## Python SDK 概述

官方 Python SDK 为 MCP 开发提供完整支持。

## 安装

```bash theme={null}
pip install mcp
```

## 快速开始

```python theme={null}
from mcp import McpServer

server = McpServer("my-server")

@server.resource("hello")
async def hello():
    return "Hello, MCP!"

server.run()
```

<Note>
  详细内容正在完善中...
</Note>
