mcp-server-chart vs aws-geocode-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aws-geocode-mcp by Kanahiro | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 28 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsOtherDeveloper Tools |
| Language | TypeScript | TypeScript |
| 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.
aws-geocode-mcp · Summary
An MCP server for geocoding using Amazon Location Service that converts addresses to coordinates.
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
aws-geocode-mcp · Use cases
- Converting physical addresses to latitude and longitude coordinates for mapping applications
- Implementing location-based search functionality in AI assistants
- Enabling proximity-based queries for nearby businesses or points of interest
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"]
}
}
}aws-geocode-mcp · Install
Installation
- First, obtain an API key from AWS Management Console with the following scopes:
- Geocode - SearchNearby
- Install the package globally:
npm install -g aws-geocode-mcp- Configure Claude Desktop by adding this to your
claude_desktop_config.json:
{
"mcpServers": {
"geocoder": {
"command": "npx",
"args": ["aws-geocode-mcp"],
"env": {
"AMAZON_LOCATION_API_KEY": "YOUR_API_KEY",
"AWS_REGION": "us-east-1"
}
}
}
}