mcp-server-chart vs iron-manus-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | iron-manus-mcp by dnnyngyen | |
|---|---|---|
| Stars | ★ 4,068 | ★ 65 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
iron-manus-mcp · Summary
Model Context Protocol server for AI workflow orchestration with 8-phase agent delegation and todo-based task dispatch.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
iron-manus-mcp · Use cases
- Multi-agent AI systems requiring task decomposition and coordination
- API integration and discovery with security protection
- Complex project planning and execution with phase-based workflows
- Python computational tasks in isolated environments
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}iron-manus-mcp · Install
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"]
}
}
}