MCP Catalogs
Home

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 uses10,239
Score8450
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis monththis 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-chart

For 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:latest

Create 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 -d

Claude 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.