mcp-server-chart vs Claude-Code-MCP-Manager
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Claude-Code-MCP-Manager by qdhenry | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityOther |
| Language | TypeScript | Shell |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Claude-Code-MCP-Manager · Summary
A bash script tool for managing MCP configurations for Claude Code with add, remove, and auto-loading capabilities.
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
Claude-Code-MCP-Manager · Use cases
- Managing multiple MCP servers for Claude Code projects
- Automating MCP configuration setup for development teams
- Creating portable MCP configurations across different 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"]
}
}
}Claude-Code-MCP-Manager · Install
Installation
- Download the script:
curl -O https://raw.githubusercontent.com/qdhenry/Claude-Code-MCP-Manager/main/mcp-manager.sh- Make it executable:
chmod +x mcp-manager.sh- Move to a location in your PATH (optional):
sudo mv mcp-manager.sh /usr/local/bin/mcp-managerFor Claude Desktop configuration, ensure the MCP servers are properly configured in your claude_desktop_config.json:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": ["supabase/mcp-server-supabase@latest", "--access-token", "YOUR_TOKEN_HERE"]
},
"digitalocean": {
"command": "npx",
"args": ["-y", "@digitalocean/mcp"]
}
}
}