mcp-server-chart vs BifrostMCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | BifrostMCP by biegehydra | |
|---|---|---|
| Stars | ★ 4,068 | ★ 212 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
BifrostMCP · Summary
VSCode extension exposing language server features to AI tools via MCP protocol.
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
BifrostMCP · Use cases
- Enable AI coding assistants to perform advanced code navigation and analysis
- Provide AI access to refactoring suggestions and quick fixes in VSCode
- Support cross-project symbol search and type information retrieval
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"]
}
}
}BifrostMCP · Install
Installation
- Install [the extension](https://marketplace.visualstudio.com/items?itemName=ConnorHallman.bifrost-mcp) from the VS Code marketplace
- Install any language-specific extensions you need for your development
- Open your project in VS Code
Configuration
The extension will automatically start an MCP server when activated. Configure your MCP-compatible AI assistant to connect to:
- SSE endpoint:
http://localhost:8008/sse - Message endpoint:
http://localhost:8008/message
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"Bifrost": {
"url": "http://localhost:8008/sse"
}
}
}