mcp-server-chart vs bifrost
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | bifrost by maximhq | |
|---|---|---|
| Stars | ★ 4,068 | ★ 4,961 |
| 30d uses | 10,239 | — |
| Score | 84 | 58 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
bifrost · Summary
Bifrost is a high-performance AI gateway with MCP support for tool calling, load balancing, and semantic caching across 1000+ models.
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
bifrost · Use cases
- Enterprise AI deployment with unified API access to multiple providers
- Production applications requiring high-performance load balancing and caching
- AI systems needing external tool capabilities through MCP integration
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"]
}
}
}bifrost · Install
Installation
Using NPX (Quick Start)
npx -y @maximhq/bifrostUsing Docker
docker run -p 8080:8080 maximhq/bifrostGo SDK Integration
go get github.com/maximhq/bifrost/coreClaude Desktop Configuration
To enable Bifrost MCP server in Claude Desktop:
{
"mcpServers": {
"bifrost": {
"command": "npx",
"args": ["-y", "@maximhq/bifrost"],
"env": {}
}
}
}