MCP Catalogs
Home

mcp-server-chart vs mcp-api-gateway

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-api-gateway
by rflpazini
Stars★ 4,068★ 40
30d uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer Toolsapi-integrationAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month2 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-api-gateway · Summary

Universal MCP server that converts any API with Swagger/OpenAPI specs into Claude Desktop tools via Docker.

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-api-gateway · Use cases

  • Integrate enterprise APIs with Claude Desktop without custom tool development
  • Enable Claude to interact with multiple API services in a single session
  • Automate API interactions through natural language prompts in Claude

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"]
    }
  }
}

mcp-api-gateway · Install

Using Docker MCP Toolkit (Recommended)

  1. Install Docker Desktop
  2. Get the MCP server from Docker MCP Toolkit
  3. Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "my-api": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i", "--pull", "always",
        "-e", "API_1_NAME=my-api",
        "-e", "API_1_SWAGGER_URL=https://api.example.com/swagger.json",
        "-e", "API_1_BASE_URL=https://api.example.com/v1",
        "-e", "API_1_HEADER_AUTHORIZATION=Bearer YOUR_TOKEN",
        "rflpazini/mcp-api-gateway:latest"
      ]
    }
  }
}

Using npx

API_1_NAME=my-api \
API_1_SWAGGER_URL=https://api.example.com/swagger.json \
API_1_BASE_URL=https://api.example.com/v1 \
npx mcp-api-gateway
Comparison generated from public README + GitHub signals. Last updated automatically.