mcp-server-chart vs llmwiki
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | llmwiki by lucasastorian | |
|---|---|---|
| Stars | ★ 4,068 | ★ 908 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphProductivity |
| 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.
llmwiki · Summary
LLM Wiki is an MCP server that indexes local documents and enables Claude to build and maintain a knowledge wiki.
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
llmwiki · Use cases
- Academic research management and literature review synthesis
- Personal knowledge base building and concept mapping
- Automated documentation generation for project repositories
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"]
}
}
}llmwiki · Install
# Clone and setup
git clone https://github.com/lucasastorian/llmwiki.git
cd llmwiki
cd api && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt
cd .. && cd web && npm install && cd ..
# Initialize workspace
./llmwiki init ~/research
# Start servers
./llmwiki serve ~/research
# Generate Claude Desktop config
./llmwiki mcp-config ~/researchAdd the following to your claude_desktop_config.json:
{
"mcpServers": {
"llmwiki-research": {
"command": "python",
"args": ["-m", "llmwiki", "mcp", "~/research"]
}
}
}