mcp-server-chart vs ollama-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ollama-mcp by rawveg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 160 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 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 · Summary
TypeScript MCP server exposing complete Ollama SDK with 14 tools for local LLM integration.
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 · Use cases
- Enable Claude Desktop to interact with local Ollama models for enhanced privacy
- Provide AI assistants with web search capabilities through Ollama Cloud
- Integrate local LLM functionality into VS Code via Cline
- Manage local models with pull, delete, and create operations
- Generate embeddings and chat completions using local models
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 · Install
Quick Start with Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"ollama": {
"command": "npx",
"args": ["-y", "ollama-mcp"]
}
}
}Global Installation
npm install -g ollama-mcpFor Cline (VS Code)
Add to your Cline MCP settings (cline_mcp_settings.json):
{
"mcpServers": {
"ollama": {
"command": "npx",
"args": ["-y", "ollama-mcp"]
}
}
}