mcp-server-chart vs Android-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Android-MCP by CursorTouch | |
|---|---|---|
| Stars | ★ 4,068 | ★ 602 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| 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.
Android-MCP · Summary
Android-MCP enables AI agents to interact with Android devices via ADB for UI automation, testing and control.
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
Android-MCP · Use cases
- Automated UI testing for mobile applications
- AI-powered Android device control and navigation
- Mobile app development and debugging assistance
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"]
}
}
}Android-MCP · Install
Installation
- **Prerequisites**:
- Python 3.13 - ADB (Android Debug Bridge) - Android 10+ device/emulator
- **Test ADB Connection**:
``shell adb devices `` Ensure your device is listed.
- **Configure Claude Desktop** (UVX method):
``json { "mcpServers": { "android-mcp": { "command": "uvx", "args": [ "--python", "3.13", "android-mcp" ] } } } ``
- For WiFi devices, add environment variables:
``json { "mcpServers": { "android-mcp": { "command": "uvx", "args": [ "--python", "3.13", "android-mcp" ], "env": { "ANDROID_MCP_CONNECTION": "wifi", "ANDROID_MCP_HOST": "192.168.1.3" } } } } ``
- Restart Claude Desktop to activate the integration.