mcp-server-chart vs apra-fleet
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | apra-fleet by Apra-Labs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 39 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| 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.
apra-fleet · Summary
An MCP server that orchestrates AI coding agents across machines with doer-reviewer loops and multi-machine coordination.
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
apra-fleet · Use cases
- Coordinating multiple AI coding agents across different machines for parallel development
- Implementing doer-reviewer loops for code quality assurance
- Distributing computationally intensive tasks across machines via AI orchestration
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"]
}
}
}apra-fleet · Install
Quick Start
**macOS (Apple Silicon)**
curl -fsSL https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-darwin-arm64 -o apra-fleet-installer && chmod +x apra-fleet-installer && ./apra-fleet-installer install**Linux (x64)**
curl -fsSL https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-linux-x64 -o apra-fleet-installer && chmod +x apra-fleet-installer && ./apra-fleet-installer install**Windows (x64)**
Invoke-WebRequest -Uri https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-win-x64.exe -OutFile apra-fleet-installer.exe; .\apra-fleet-installer.exe installClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"apra-fleet": {
"command": "apra-fleet",
"args": ["mcp"],
"env": {}
}
}
}