mcp-server-chart vs turbovault
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | turbovault by Epistates | |
|---|---|---|
| Stars | ★ 4,068 | ★ 126 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphProductivityDeveloper Tools |
| Language | TypeScript | Rust |
| 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.
turbovault · Summary
Rust SDK and MCP server that transforms Obsidian vaults into intelligent knowledge systems with 47 specialized tools.
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
turbovault · Use cases
- Transform an Obsidian vault into an AI-powered knowledge system with search, link analysis, and relationship discovery
- Build custom applications that consume and analyze markdown directories with high-performance Rust SDK
- Manage multiple vaults dynamically with instant context switching and atomic batch operations
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"]
}
}
}turbovault · Install
Install TurboVault using Cargo:
# Minimal install (7.0 MB, STDIO only)
cargo install turbovault
# With HTTP server (~8.2 MB)
cargo install turbovault --features http
# With all cross-platform transports (~8.8 MB)
cargo install turbovault --features fullFor Claude Desktop, add to ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"turbovault": {
"command": "/path/to/turbovault",
"args": ["--vault", "/path/to/your/vault", "--profile", "production"]
}
}
}