mcp-server-chart vs openclaw-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | openclaw-mcp by freema | |
|---|---|---|
| Stars | ★ 4,068 | ★ 169 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSecurity |
| 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.
openclaw-mcp · Summary
MCP server bridging Claude.ai with self-hosted OpenClaw assistant using OAuth2 authentication.
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
openclaw-mcp · Use cases
- Delegating tasks from Claude to self-hosted OpenClaw assistants
- Creating AI assistants that orchestrate other AI assistants
- Managing multiple OpenClaw instances for different environments (prod/staging/dev)
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"]
}
}
}openclaw-mcp · Install
Installation
Docker (Recommended)
docker pull ghcr.io/freema/openclaw-mcp:latestCreate a docker-compose.yml with environment variables and start:
export MCP_CLIENT_SECRET=$(openssl rand -hex 32)
export OPENCLAW_GATEWAY_TOKEN=your-gateway-token
docker compose up -dClaude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"openclaw": {
"command": "npx",
"args": ["openclaw-mcp"],
"env": {
"OPENCLAW_URL": "http://127.0.0.1:18789",
"OPENCLAW_GATEWAY_TOKEN": "your-gateway-token",
"OPENCLAW_MODEL": "openclaw"
}
}
}
}