mcp-server-chart vs mcp-google-map
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-google-map by cablate | |
|---|---|---|
| Stars | ★ 4,068 | ★ 302 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-google-map · Summary
A comprehensive MCP server with 18 Google Maps API tools for geolocation, routing, search, and location-based intelligence.
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
mcp-google-map · Use cases
- Travel planning and itinerary creation with optimized multi-stop routes
- Business location analysis and competitor tracking for local SEO
- Real-time location-based information retrieval for conversational AI
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"]
}
}
}mcp-google-map · Install
Installation
**1. stdio mode (Recommended)** Add to Claude Desktop configuration:
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": ["-y", "@cablate/mcp-google-map", "--stdio"],
"env": {
"GOOGLE_MAPS_API_KEY": "YOUR_API_KEY"
}
}
}
}**2. HTTP server mode**
npx @cablate/mcp-google-map --port 3000 --apikey "YOUR_API_KEY"Configure client:
{
"mcpServers": {
"google-maps": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}