mcp-server-chart vs arcade-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | arcade-mcp by ArcadeAI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 892 |
| 30d uses | 10,239 | — |
| Score | 84 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
arcade-mcp · Summary
Python framework for building MCP servers with OAuth, tool development, and vendor-neutral integration.
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
arcade-mcp · Use cases
- Building custom MCP tools for internal APIs and enterprise systems
- Creating OAuth-secured integrations with GitHub, Slack, Google, and other services
- Developing domain-specific agents with specialized tooling
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"]
}
}
}arcade-mcp · Install
Install the CLI:
uv tool install arcade-mcpCreate a new server:
arcade new my_server
cd my_server/src/my_serverRun the server:
uv run server.py # stdio (default)
uv run server.py http # HTTP+SSEConfigure Claude Desktop: Add to claude_desktop_config.json:
{
"mcpServers": {
"my-server": {
"command": "uv",
"args": ["run", "server.py"]
}
}
}