claude-mgr-orchestrator
MCP server for orchestrating Claude Manager agents
pinned to #470b8acupdated 2 weeks ago
Ask your AI client: “install mcps/claude-mgr-orchestrator”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install mcps/claude-mgr-orchestratormetahub onboarded this repo on the author's behalf.
If you own github.com/Charlie85270/Dorothy on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
320
Last commit
2 weeks ago
Latest release
published
- #ai
- #ai-agents
- #ai-tools
- #orchestration
What this server exposes
Surfaces parsed from this server's source at publish time.
Launches: claude-mgr-orchestrator
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.470b8ac· 2 weeks ago
Documentation
41Description qualitywarn
Only 7 words · 50 chars — more detail helps discovery
Tell consumers what this artifact does in a full sentence.
README is present and substantial
31,845 chars · 20 sections · 10 code blocks
Tags / topics declared
4 total — ai, ai-agents, ai-tools, orchestration
README has usage / example sections
found: Usage · Example · Example (+1)
Homepage / docs URL declared
https://dorothyai.app
Release history
1- releasecurrent470b8acwarn2 weeks ago
Contents
Claude Manager Orchestrator MCP Server
An MCP (Model Context Protocol) server that allows Claude to manage other Claude agents in the Claude Manager app.
Installation
cd mcp-orchestrator
npm install
npm run build
Configuration
Add to your Claude Code MCP settings (~/.claude/mcp.json):
{
"mcpServers": {
"claude-mgr-orchestrator": {
"command": "node",
"args": ["/path/to/dorothy/mcp-orchestrator/dist/index.js"]
}
}
}
Or for development:
{
"mcpServers": {
"claude-mgr-orchestrator": {
"command": "npx",
"args": ["tsx", "/path/to/dorothy/mcp-orchestrator/src/index.ts"]
}
}
}
Requirements
The Claude Manager Electron app must be running for the MCP server to work. It exposes a local API on port 31415.
Available Tools
list_agents
List all agents and their current status.
get_agent
Get detailed information about a specific agent.
id: The agent ID
get_agent_output
Get the recent terminal output from an agent.
id: The agent IDlines: Number of lines to retrieve (default: 100)
create_agent
Create a new agent for a specific project.
projectPath: Absolute path to the project directoryname: Name for the agent (optional)skills: List of skill names to enable (optional)character: Visual character (optional)skipPermissions: Run with --dangerously-skip-permissions (optional)secondaryProjectPath: Additional project context (optional)
start_agent
Start an agent with a specific task/prompt.
id: The agent IDprompt: The task or instructionmodel: Optional model to use
stop_agent
Stop a running agent.
id: The agent ID
send_message
Send input to an agent waiting for input.
id: The agent IDmessage: The message to send
remove_agent
Permanently remove an agent.
id: The agent ID
wait_for_agent
Poll an agent's status until it completes or errors.
id: The agent IDtimeoutSeconds: Maximum wait time (default: 300)pollIntervalSeconds: Poll interval (default: 5)
Example Usage
When configured, the Super Agent can:
"Create 3 agents for my project at /Users/me/myapp:
1. Backend agent to refactor the API
2. Frontend agent to update the UI
3. Test agent to write tests
Start them in sequence, waiting for each to complete before starting the next."
The orchestrator will use the tools to create, start, monitor, and coordinate the agents.
Reviews
No reviews yet. Be the first.
Related
claude-marketplace-execution-runtime
Code execution environment for Claude Code - implements Anthropic code execution pattern with 90%+ token savings
Android-MCP
Lightweight MCP Server for Android Operating System
Nanobot
A lightweight personal AI assistant framework
mh install mcps/claude-mgr-orchestrator