mcp-server-chart vs Vera
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Vera by lemon07r | |
|---|---|---|
| Stars | ★ 4,068 | ★ 82 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSearchAI / LLM Tools |
| Language | TypeScript | Rust |
| 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.
Vera · Summary
Local code search tool combining BM25, vector similarity, and cross-encoder reranking with MCP support.
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
Vera · Use cases
- AI-powered code search and navigation within large codebases
- Integration with coding assistants to provide enhanced code intelligence
- Local code analysis for reference finding, dead code detection, and project overview
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"]
}
}
}Vera · Install
Installation
- Install Vera:
bunx @vera-ai/cli install # or: npx -y @vera-ai/cli install / uvx vera-ai install- Set up models:
vera setup # Interactive wizard
vera setup --api # API mode (recommended)- Enable MCP:
vera mcp # or: bunx @vera-ai/cli mcp / uvx vera-ai mcpFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"vera": {
"command": "vera",
"args": ["mcp"]
}
}
}