mcp-server-chart vs indxr
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | indxr by bahdotsh | |
|---|---|---|
| Stars | ★ 4,068 | ★ 64 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| 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.
indxr · Summary
A fast codebase indexer and knowledge wiki for AI agents with 26 MCP tools for code analysis.
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
indxr · Use cases
- AI agents analyzing large codebases to understand architecture and relationships
- Continuous documentation generation and maintenance via the knowledge wiki
- Code quality monitoring and complexity hotspot identification
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"]
}
}
}indxr · Install
Install indxr using cargo:
cargo install indxr --features wikiTo use as an MCP server, run:
indxr serve ./my-project --watch --wiki-auto-updateFor Claude Desktop, add to config.json:
{
"mcpServers": {
"indxr": {
"command": "indxr",
"args": ["serve", "/path/to/project", "--wiki-auto-update"]
}
}
}