MCP Catalogs
Home

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 uses10,239
Score8455
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis 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-chart

For 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-mcp

Create a new server:

arcade new my_server
cd my_server/src/my_server

Run the server:

uv run server.py             # stdio (default)
uv run server.py http        # HTTP+SSE

Configure Claude Desktop: Add to claude_desktop_config.json:

{
  "mcpServers": {
    "my-server": {
      "command": "uv",
      "args": ["run", "server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.