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 uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 5 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-chartFor 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
- Clone the repository
- Edit the compose.yml file to reference your config.json file
- Run with
docker-compose up --build -d
Manual Installation
- Clone the repository
- Install dependencies:
uv sync - Create a config.json file in the root directory
- 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"]
}
}
}