MCP Catalogs
Home

mcp-server-chart vs MCP-Bridge

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

mcp-server-chart
by antvis
MCP-Bridge
by SecretiveShell
Stars★ 4,068★ 925
30d uses10,239
Score8451
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month5 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-Bridge · Summary

MCP-Bridge acts as middleware to provide OpenAI-compatible endpoints that call MCP tools.

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

  • Integrating MCP tools with OpenAI-based applications like Open WebUI
  • Providing an OpenAI-compatible interface for legacy systems that need MCP functionality
  • Simplifying the integration of multiple MCP tools into AI applications without MCP native support

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

Docker Installation

  1. Clone the repository
  2. Edit the compose.yml file to reference your config.json file
  3. Run with docker-compose up --build -d

Manual Installation

  1. Clone the repository
  2. Install dependencies: uv sync
  3. Create a config.json file in the root directory
  4. Run the application: uv run mcp_bridge/main.py

Claude Desktop Configuration

Add to Claude Desktop's config.json:

{
  "mcpServers": {
    "mcp-bridge": {
      "command": "uvx",
      "args": ["mcp-bridge"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.