mcp-server-chart vs VectorCode
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | VectorCode by Davidyz | |
|---|---|---|
| Stars | ★ 4,068 | ★ 859 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
VectorCode · Summary
VectorCode is a code repository indexing tool that enhances LLM understanding of codebases through MCP 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
VectorCode · Use cases
- Enhancing LLM understanding of closed-source projects
- Improving code analysis in IDE with neovim integration
- Reducing LLM hallucination in code generation tasks
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"]
}
}
}VectorCode · Install
Installation
pip install
pip install vectorcodeNeovim Plugin
use 'Davidyz/vectorcode.nvim'Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"vectorcode": {
"command": "vectorcode",
"args": ["mcp"]
}
}
}