mcp-server-chart vs jdocmunch-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jdocmunch-mcp by jgravelle | |
|---|---|---|
| Stars | ★ 4,068 | ★ 171 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Python |
| 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.
jdocmunch-mcp · Summary
MCP server for efficient documentation exploration via structured section indexing, reducing token consumption by 95% compared to traditional approaches.
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
jdocmunch-mcp · Use cases
- Efficient documentation exploration for AI agents working with large codebases
- Token-optimized retrieval of specific configuration sections from documentation
- Context-aware documentation navigation without loading entire files
- Structured knowledge extraction from technical documentation with preserved hierarchy
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"]
}
}
}jdocmunch-mcp · Install
Installation
**Prerequisites**
- Python 3.10+
- pip
**Install via pip:**
pip install jdocmunch-mcp**Configure Claude Desktop:** Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"jdocmunch": {
"command": "uvx",
"args": ["jdocmunch-mcp"]
}
}
}For optional AI summaries and GitHub auth:
{
"mcpServers": {
"jdocmunch": {
"command": "uvx",
"args": ["jdocmunch-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_...",
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}After saving, restart Claude Desktop.