用于编排多个 Claude Code 会话以并行处理复杂项目的 MCP(模型上下文协议)服务器。
pip install gradio httpx python-dotenv
配置环境变量:
.env.example 到 .envCLAUDE_WEBHOOK_SECRET 为实际的 webhook 密钥运行服务器:
./run_server.sh
# 或者
python mcp_server.py
服务器将在 http://localhost:7860 启动。
服务器提供了以下工具:
运行测试脚本以验证配置:
python test_mcp_server.py
服务器使用 Bearer token 认证。在 .env 文件中设置您的 webhook 密钥:
CLAUDE_WEBHOOK_SECRET=your-secret-here