mcp-server-chart vs Amazing-Marvin-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Amazing-Marvin-MCP by bgheneti | |
|---|---|---|
| Stars | ★ 4,068 | ★ 34 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Amazing-Marvin-MCP · Summary
MCP server connecting Amazing Marvin productivity app with AI assistants for task and project management.
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
Amazing-Marvin-MCP · Use cases
- Ask AI assistant for daily planning recommendations based on actual tasks and priorities
- Get project insights and progress tracking directly from Amazing Marvin data
- Have AI create, mark as complete, or organize tasks in Amazing Marvin through natural language
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"]
}
}
}Amazing-Marvin-MCP · Install
Installation
Option 1: Smithery (Easiest)
npx -y @smithery/cli install @bgheneti/amazing-marvin-mcp --client claudePaste the API key when prompted
Option 2: Pip + Manual Config
pip install amazing-marvin-mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"amazing-marvin": {
"command": "python",
"args": ["-m", "amazing_marvin_mcp"],
"env": {
"AMAZING_MARVIN_API_KEY": "your-api-key-here"
}
}
}
}