mcp-server-chart vs arkon
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | arkon by nduckmink | |
|---|---|---|
| Stars | ★ 4,068 | ★ 729 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| 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.
arkon · Summary
Enterprise AI knowledge hub serving as MCP server for secure organizational RAG contexts and AI skills.
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
arkon · Use cases
- Enterprise knowledge management with departmental isolation and RBAC
- AI assistant integration with organizational context via MCP
- Secure document processing and knowledge compilation with human review workflow
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"]
}
}
}arkon · Install
Docker Installation
- Clone the repository:
``shell git clone https://github.com/nduckmink/arkon.git cd arkon ``
- Configure environment:
``shell cp .env.docker.example .env.docker # Edit .env.docker - set SECRET_KEY, admin credentials, and Postgres/MinIO secrets ``
- Launch:
``shell docker compose --env-file .env.docker up -d --build ``
- Access the portal at
http://localhost:3119, sign in as admin, then go to **Settings** to pick your embedding/LLM/vision models and paste API keys.
Claude Desktop Integration
After creating an employee account and generating an MCP token:
{
"mcpServers": {
"arkon": {
"url": "https://your-arkon-server/mcp",
"headers": { "Authorization": "Bearer ark_xxxxxxxxxxxx" }
}
}
}Drop it into claude_desktop_config.json and restart Claude Desktop.