mcp-server-chart vs ollama-mcp-bridge
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ollama-mcp-bridge by jonigl | |
|---|---|---|
| Stars | ★ 4,068 | ★ 86 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ollama-mcp-bridge · Summary
Ollama MCP Bridge provides an API layer that integrates multiple MCP servers with the Ollama API, enabling dynamic AI tool integration for local LLM applications.
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
ollama-mcp-bridge · Use cases
- Building powerful local LLM applications with extended tool capabilities
- Creating custom AI agents that can access multiple specialized tools
- Enabling Ollama to use tools from different MCP servers simultaneously
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"]
}
}
}ollama-mcp-bridge · Install
Installation Options
**Quick Start with uvx:**
uvx ollama-mcp-bridge**Install from PyPI:**
pip install --upgrade ollama-mcp-bridge**Run with Docker:**
docker run -p 8000:8000 \
-e OLLAMA_URL=http://host.docker.internal:11434 \
-v "$PWD/mcp-config.json:/mcp-config.json" \
ghcr.io/jonigl/ollama-mcp-bridge:latest**Claude Desktop Configuration:** Add to Claude Desktop config.json:
"mcpServers": {
"ollama-bridge": {
"command": "ollama-mcp-bridge",
"args": []
}
}