mcp-server-chart vs phone-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | phone-mcp by hao-cyber | |
|---|---|---|
| Stars | ★ 4,068 | ★ 231 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
phone-mcp · Summary
Android phone control MCP server using ADB commands for calls, messages, apps, and UI automation.
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
phone-mcp · Use cases
- Automating phone calls and SMS messages based on AI decisions
- Creating automated workflows that combine app launches with UI interactions
- Analyzing phone screens to make informed decisions about next actions
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"]
}
}
}phone-mcp · Install
Installation
# Run directly with uvx (recommended)
uvx phone-mcp
# Or install with uv
uv pip install phone-mcp
# Or install with pip
pip install phone-mcpConfiguration
Add to your AI assistant configuration:
{
"mcpServers": {
"phone-mcp": {
"command": "uvx",
"args": [
"phone-mcp"
]
}
}
}For pip installation, use:
{
"mcpServers": {
"phone-mcp": {
"command": "/usr/local/bin/python",
"args": [
"-m",
"phone_mcp"
]
}
}
}Requirements: Python 3.7+, ADB tools, Android device with USB debugging enabled.