mcp-server-chart vs Kaimon.jl
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Kaimon.jl by kahliburke | |
|---|---|---|
| Stars | ★ 4,068 | ★ 67 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Julia |
| 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.
Kaimon.jl · Summary
MCP server providing AI agents full access to Julia's runtime with code execution, debugging, testing, and semantic search.
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
Kaimon.jl · Use cases
- AI-assisted Julia development with real-time code execution and debugging
- Semantic code search across Julia projects to find relevant implementations
- Integrating Julia-based domain tools into AI workflows via custom MCP tools
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"]
}
}
}Kaimon.jl · Install
Installation
- Install Kaimon.jl in Julia:
]app add Kaimon- Run the kaimon command:
kaimonThe first run will open a setup wizard (security mode, API key, port).
Claude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"kaimon": {
"command": "kaimon",
"args": []
}
}
}