mcp-server-chart vs docmole
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | docmole by Vigtu | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | TypeScript |
| 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.
docmole · Summary
An MCP server that lets you query any documentation site with AI, supporting both local RAG and Mintlify-powered sites.
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
docmole · Use cases
- Search documentation directly from AI assistants like Claude or Cursor
- Build custom documentation search solutions for internal documentation
- Enable AI assistants to provide accurate, up-to-date information from documentation sources
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"]
}
}
}docmole · Install
Installation
Using bunx (no install needed):
bunx docmole --helpOr install globally:
bun install -g docmoleLocal RAG Mode
# One-time setup
bunx docmole setup --url https://docs.example.com --id my-docs
# Start the MCP server
bunx docmole serve --project my-docsMintlify Mode (zero setup)
bunx docmole -p agno-v2Claude Desktop Configuration
{
"mcpServers": {
"my-docs": {
"command": "bunx",
"args": ["docmole", "serve", "--project", "my-docs"]
},
"mintlify-docs": {
"command": "bunx",
"args": ["docmole", "-p", "agno-v2"]
}
}
}