mcp-server-chart vs mcp-bridgekit
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-bridgekit by mkbhardwas12 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 60 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 3 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-bridgekit · Summary
A bridge that converts MCP stdio servers to HTTP endpoints with session pooling and background job handling.
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-bridgekit · Use cases
- AI chatbot with tool calling capabilities
- Multi-tenant SaaS platform with customer-specific MCP tools
- Long-running data processing that exceeds HTTP timeout limits
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-bridgekit · Install
Installation
# Clone & install
git clone https://github.com/mkbhardwas12/mcp-bridgekit.git
cd mcp-bridgekit
# Copy environment config
cp .env.example .env # edit if needed
# Install (pick one)
uv sync --dev # recommended
pip install -e ".[dev]" # alternative
# Start Redis (required for job queue)
docker run -d -p 6379:6379 redis:7-alpine
# Start server
uvicorn mcp_bridgekit.app:app --reload
# Start worker
mcp-bridgekit-worker