Claude MCP 工具集
用于扩展 Claude 能力的 MCP 服务器集合。
快速入门
前置条件
- Python 3.10 或更高版本
- 安装 Claude 桌面应用 (v1.2.0+)
安装步骤
-
克隆仓库: git clone https://github.com/henrygabriels/claude-mcp-tools.git cd claude-mcp-tools
-
设置虚拟环境并安装依赖: python -m venv venv source venv/bin/activate (Windows 使用 venv\Scripts\activate) pip install -r requirements.txt
-
配置 Claude Desktop,编辑配置文件(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,Windows: %APPDATA%\Claude\claude_desktop_config.json),添加以下内容: { "mcpServers": { "news-search": { "command": "python /absolute/path/to/claude-mcp-tools/news-search-server/server.py" }, "wikipedia": { "command": "python /absolute/path/to/claude-mcp-tools/wikipedia-server/server.py" }, "analytics": { "command": "python /absolute/path/to/claude-mcp-tools/analytics-server/server.py" } } }
-
重启 Claude Desktop。