mcp-server-chart vs adbfriend
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | adbfriend by mikepenz | |
|---|---|---|
| Stars | ★ 4,068 | ★ 71 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsFile SystemAI / LLM Tools |
| Language | TypeScript | Kotlin |
| 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.
adbfriend · Summary
Android ADB CLI tool with integrated MCP Server for common development actions.
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
adbfriend · Use cases
- Automate Android testing workflows by installing apps, clearing data, and capturing screenshots
- Streamline device setup by disabling animations, enabling touches, and configuring test parameters
- Transfer files between computer and Android device with intelligent sync capabilities
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"]
}
}
}adbfriend · Install
Installation
Using Homebrew:
brew tap mikepenz/tap
brew install mikepenz/tap/adbfriendAlternatively, download prebuilt binaries from the release page.
Claude Desktop Configuration
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"adb-friend": {
"command": "/opt/homebrew/bin/adbfriend",
"args": [
"mcp",
"server"
],
"env": {
"ANDROID_HOME": "/path/to/your/android/sdk"
}
}
}
}> Important: If ANDROID_HOME is not provided, the adb-server must be manually started.