mcp-server-chart vs conductor-tasks
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | conductor-tasks by hridaya423 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 74 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
conductor-tasks · Summary
AI-powered task management system for developers that integrates via MCP or CLI.
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
conductor-tasks · Use cases
- Parsing product requirements documents (PRDs) into actionable tasks
- Generating implementation plans for complex features
- Visualizing project progress with Kanban boards and dependency trees
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"]
}
}
}conductor-tasks · Install
Installation
Via MCP (Recommended)
- Add the MCP Server Configuration to your editor's settings (e.g.,
mcp.json):
{
"mcpServers": {
"conductor-tasks": {
"command": "npx",
"args": ["conductor-tasks", "--serve-mcp"],
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_KEY_HERE",
"ANTHROPIC_API_KEY": "YOUR_ANTHROPIC_KEY_HERE",
"GOOGLE_API_KEY": "YOUR_GOOGLE_KEY_HERE"
}
}
}
}Via CLI
npm install -g conductor-tasksThen set up your API keys in a .env file: