MCP Catalogs
Home

mcp-server-chart vs mcp-gateway

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

mcp-server-chart
by antvis
mcp-gateway
by unrelated-ai
Stars★ 4,068★ 19
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsOps & InfraAI / LLM Tools
LanguageTypeScriptRust
Last committhis month1 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-gateway · Summary

A gateway solution that transforms any HTTP endpoint into MCP servers, offering multi-tenant isolation and centralized management.

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

  • Transforming existing REST APIs into MCP tools for AI assistants
  • Aggregating multiple backend services into a unified tool interface
  • Creating tenant-specific MCP endpoints with different access levels

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-gateway · Install

Installation

Quick Start (Docker)

# Download the compose file
curl -fsSL -o mcp-gateway-compose.yml \
  https://raw.githubusercontent.com/unrelated-ai/mcp-gateway/main/docker-compose.quickstart.yml

# Start the stack
GATEWAY_VERSION=0.12.3 UI_VERSION=0.8.2 \
  docker compose -f mcp-gateway-compose.yml up -d

Claude Desktop Configuration

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "gateway-server": {
      "command": "docker",
      "args": ["run", "--rm", "ghcr.io/unrelated-ai/mcp-gateway:latest"],
      "env": {
        "PROFILE_ID": "your-profile-id"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.