MCP.so
Sign In

Claude Orchestration MCP Server

@claude-did-this

About Claude Orchestration MCP Server

MCP server for orchestrating multiple Claude Code sessions

Basic information

Category

AI & Agents

Runtime

python

Transports

stdio

Publisher

claude-did-this

Config

Add this server to your MCP-compatible client using the configuration below.

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

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

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.

Comments

More AI & Agents MCP servers