MCP Catalogs
Home

mcp-server-chart vs mcp-server-hub-server

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

mcp-server-chart
by antvis
mcp-server-hub-server
by bsmi021
Stars★ 4,068★ 3
30d uses10,239
Score8430
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsProductivityAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month14 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-server-hub-server · Summary

A gateway that centralizes multiple MCP servers, allowing clients to access all tools through a single endpoint.

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-server-hub-server · Use cases

  • Managing multiple MCP servers for different LLM clients like Cline and Cursor without duplication
  • Centralizing tool access for teams using various AI development environments
  • Dynamically updating MCP server configurations without restarting client applications

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-server-hub-server · Install

Installation

  1. Clone the repository
  2. Install dependencies: npm install
  3. Build the project: npm run build
  4. Configure mcp_hub_config.json in the project root
  5. Start the gateway server: npm start

Client Configuration

Add this entry to your LLM client's MCP settings:

{
  "mcpServers": {
    "gateway-client": {
      "command": "node",
      "args": [
        "/path/to/mcp-server-hub-server/dist/client/client.js"
      ],
      "options": {
        "cwd": "/path/to/mcp-server-hub-server"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.