mcp-server-chart vs swarmclaw
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | swarmclaw by swarmclawai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 486 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| 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.
swarmclaw · Summary
SwarmClaw is a self-hosted multi-agent framework with MCP tools for autonomous agent swarms.
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
swarmclaw · Use cases
- Building and managing autonomous agent teams with delegation capabilities
- Creating self-hosted AI agent workflows across multiple LLM providers
- Developing complex multi-agent systems with agent memory and persistence
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"]
}
}
}swarmclaw · Install
Installing SwarmClaw
Desktop App (Recommended)
Download the one-click installer from [swarmclaw.ai/downloads](https://swarmclaw.ai/downloads) Available for macOS, Windows, and Linux.
Global Install
npm i -g @swarmclawai/swarmclaw
swarmclawDocker
git clone https://github.com/swarmclawai/swarmclaw.git
cd swarmclaw
mkdir -p data
touch .env.local
docker compose up -d --buildClaude Desktop Integration
To use SwarmClaw as an MCP server with Claude Desktop:
- Add to Claude Desktop config:
{
"mcpServers": {
"swarmclaw": {
"command": "swarmclaw",
"args": ["server"]
}
}
}