MCP.so
ログイン

Claude Orchestration MCP Server

@claude-did-this

Claude Orchestration MCP Server について

MCP server for orchestrating multiple Claude Code sessions

基本情報

カテゴリ

AI とエージェント

ランタイム

python

トランスポート

stdio

公開者

claude-did-this

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "mcp-claude-hub": {
      "command": "python",
      "args": [
        "mcp_server.py"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Claude Orchestration MCP Server?

The Claude Orchestration MCP Server is a Model Context Protocol server designed to orchestrate multiple Claude Code sessions for working on complex projects in parallel. It allows creating, managing, and monitoring multiple sessions with dependency definitions, session progress tracking, and output retrieval via a Gradio-based web interface.

How to use Claude Orchestration MCP Server?

Install dependencies (gradio, httpx, python-dotenv), configure the .env file with your webhook secret (e.g., CLAUDE_WEBHOOK_SECRET=your-secret-here), and start the server using ./run_server.sh or python mcp_server.py. The server runs at http://localhost:7860. Tools are available as MCP endpoints: create_session, start_session, get_session_status, get_session_output, list_sessions, and wait_for_session.

Key features of Claude Orchestration MCP Server

  • Create and manage multiple Claude Code sessions
  • Define dependencies between sessions
  • Monitor session progress and status
  • Retrieve outputs from completed sessions
  • Web-based interface using Gradio
  • Bearer token authentication with webhook secret

Use cases of Claude Orchestration MCP Server

  • Running multiple Claude Code sessions in parallel for large codebase refactors
  • Coordinating dependent tasks (e.g., frontend and backend changes) with session chaining
  • Automating batch code reviews or test generation across multiple modules
  • Monitoring long-running Claude Code workflows asynchronously

FAQ from Claude Orchestration MCP Server

What runtime dependencies does the server require?

The server requires Python packages: gradio, httpx, and python-dotenv. Install them with pip install.

How is authentication handled?

The server uses Bearer token authentication. Set your webhook secret in the .env file under CLAUDE_WEBHOOK_SECRET.

How do I start the server?

Run ./run_server.sh or python mcp_server.py after installing dependencies and configuring .env. The server listens on http://localhost:7860.

How can I test the server configuration?

Run the test script python test_mcp_server.py to verify your setup.

コメント

「AI とエージェント」の他のコンテンツ