mcp-server-chart vs sverklo
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | sverklo by sverklo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 54 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
sverklo · Summary
Sverklo is a local-first MCP server providing code intelligence with symbol graphs, blast-radius analysis, and git-pinned memory.
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
sverklo · Use cases
- Improving code search accuracy in large repositories
- Reducing context windows for AI coding assistants
- Providing blast-radius analysis for code changes
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"]
}
}
}sverklo · Install
Install Sverklo
- Install globally:
npm install -g sverklo - Initialize in your project:
cd your-project && sverklo init
The tool will auto-detect your installed AI coding agent (Claude Code, Cursor, Windsurf, Zed), write the right MCP config, append instructions to AGENTS.md or CLAUDE.md, and run sverklo doctor to verify the setup.
For Claude Desktop, add to your Claude Desktop configuration:
"mcpServers": {
"sverklo": {
"command": "npx",
"args": ["-y", "sverklo"]
}
}