mcp-server-chart vs mcp-arr
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-arr by aplaceforallmystuff | |
|---|---|---|
| Stars | ★ 4,068 | ★ 137 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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-arr · Summary
MCP server for unified management of *arr media suite including Sonarr, Radarr, Lidarr, and Prowlarr.
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-arr · Use cases
- Check library status across all *arr applications with natural language queries
- Search and add content to any *arr service from a unified interface
- Monitor download progress and upcoming releases across TV, movies, and music
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-arr · Install
Installation
**Using npm (Recommended)**
npx mcp-arr-server**Remote HTTP Mode**
MCP_TRANSPORT=http PORT=3000 npx mcp-arr-server**For Claude Desktop** Add to your Claude Desktop config file:
{
"mcpServers": {
"arr": {
"command": "npx",
"args": ["-y", "mcp-arr-server"],
"env": {
"SONARR_URL": "http://localhost:8989",
"SONARR_API_KEY": "your-sonarr-api-key",
"RADARR_URL": "http://localhost:7878",
"RADARR_API_KEY": "your-radarr-api-key",
"LIDARR_URL": "http://localhost:8686",
"LIDARR_API_KEY": "your-lidarr-api-key",
"PROWLARR_URL": "http://localhost:9696",
"PROWLARR_API_KEY": "your-prowlarr-api-key"
}
}
}
}