loading…
Search for a command to run...
loading…
Coordinates up to 64 parallel expert agents for complex multi-agent orchestration and intelligent task routing within Claude Code. It enables users to analyze r
Coordinates up to 64 parallel expert agents for complex multi-agent orchestration and intelligent task routing within Claude Code. It enables users to analyze requests, manage hierarchical execution plans, and monitor active orchestration sessions.
Model Context Protocol (MCP) server for Claude Code Orchestrator Plugin.
The MCP server is automatically installed via Claude Code's MCP system.
pip install orchestrator-mcp-server
Or via uvx (recommended):
uvx --from git+https://github.com/LeoDg/orchestrator-mcp-server orchestrator-mcp
orchestrator_analyzeAnalyze a request and generate execution plan without executing.
Parameters:
request (string, required): The user request to analyzeshow_table (boolean, optional): Show execution plan table (default: true)orchestrator_executeExecute orchestration plan (generates plan for Task tool execution).
Parameters:
request (string, required): The user request to orchestrateparallel (number, optional): Max parallel agents 1-64 (default: 6)model (string, optional): Force specific model (auto/haiku/sonnet/opus)orchestrator_statusGet status of an orchestration session.
Parameters:
session_id (string, optional): Session ID to check (empty for latest)orchestrator_agentsList all available expert agents.
Parameters:
filter (string, optional): Filter by domain or keywordorchestrator_listList recent orchestration sessions.
Parameters:
limit (number, optional): Max sessions to return (default: 10)orchestrator_previewPreview orchestration with detailed task breakdown.
Parameters:
request (string, required): Request to previeworchestrator_cancelCancel an active orchestration session.
Parameters:
session_id (string, required): Session ID to cancelorchestrator://sessions - All orchestration sessionsorchestrator://agents - Available expert agentsorchestrator://config - Server configuration┌─────────────────────────────────────────────────────────┐
│ Claude Code │
│ ┌───────────────────────────────────────────────────┐ │
│ │ Orchestrator MCP Server │ │
│ │ │ │
│ │ ┌─────────────┐ ┌─────────────┐ ┌───────────┐ │ │
│ │ │ Analyzer │ │ Router │ │ Executor │ │ │
│ │ └─────────────┘ └─────────────┘ └───────────┘ │ │
│ │ │ │
│ │ ┌─────────────────────────────────────────────┐ │ │
│ │ │ Expert Agents Registry │ │ │
│ │ │ GUI | DB | Security | API | MQL | ... │ │ │
│ │ └─────────────────────────────────────────────┘ │ │
│ └───────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────┘
MIT License - See LICENSE file for details.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"orchestrator-mcp-server": {
"command": "npx",
"args": []
}
}
}