
iron-manus-mcp
by dnnyngyen·★ 65·Score 46
Model Context Protocol server for AI workflow orchestration with 8-phase agent delegation and todo-based task dispatch.
Overview
Iron Manus MCP is a sophisticated Model Context Protocol server designed for AI workflow orchestration. It implements an 8-phase workflow (INIT → QUERY → ENHANCE → KNOWLEDGE → PLAN → EXECUTE → VERIFY → DONE) with specialized tools like JARVIS for workflow control and APITaskAgent for API discovery with SSRF protection. The server introduces innovative patterns that later became standard in the industry, including todos as subagent dispatch queues, phase-gated tool access, and structured planning phases.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this MCP server for complex AI workflows requiring specialized agents, structured planning phases, and secure API integration with SSRF protection.
When NOT to choose this
Don't choose this if you need a simple MCP server with basic tools, as this implements a complex multi-agent orchestration system with significant setup overhead.
Tools this server exposes
6 tools extracted from the READMEJARVIS8-phase workflow controller for orchestration
APITaskAgentAPI discovery and fetching with SSRF protection
PythonComputationalToolPython execution for data analysis
IronManusStateGraphSession state management
SlideGeneratorHTML slide generation
HealthCheckRuntime diagnostics
Comparable tools
Installation
Installation
From source:
git clone https://github.com/dnnyngyen/iron-manus-mcp
cd iron-manus-mcp
npm install
npm run build
npm startDocker:
docker build -t iron-manus-mcp .
docker run -d --name iron-manus-mcp iron-manus-mcpMCP Integration: Add to Claude Code:
claude mcp add iron-manus-mcp node dist/index.jsOr add to your MCP config:
{
"mcpServers": {
"iron-manus-mcp": {
"command": "node",
"args": ["path/to/iron-manus-mcp/dist/index.js"]
}
}
}FAQ
- What is the 8-phase workflow?
- Iron Manus MCP implements an 8-phase workflow (INIT → QUERY → ENHANCE → KNOWLEDGE → PLAN → EXECUTE → VERIFY → DONE) that enforces planning before execution and structures agent interactions.
- How are todos used as subagent dispatch?
- Todos act as task dispatch mechanisms where each todo can specify an agent type (TaskAgent, SubAgent, DirectExecution) and configuration, enabling structured task delegation.
Compare iron-manus-mcp with
Last updated · Auto-generated from public README + GitHub signals.