mcp-server-chart vs ckb
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ckb by nyxCore-Systems | |
|---|---|---|
| Stars | ★ 4,068 | ★ 95 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Go |
| 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.
ckb · Summary
CKB is a comprehensive code intelligence platform providing MCP server with tools for code analysis, impact assessment, and architecture mapping.
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
ckb · Use cases
- AI-assisted code review with precise impact analysis and risk scoring
- Architecture understanding and documentation through semantic queries
- Dead code detection and tech debt identification in large codebases
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"]
}
}
}ckb · Install
Installation
Option 1: npm (Recommended)
npm install -g @tastehub/ckbOption 2: Homebrew (macOS/Linux)
brew tap SimplyLiz/ckb
brew install ckbOption 3: Build from Source
git clone https://github.com/SimplyLiz/CodeMCP.git
cd CodeMCP
go build -o ckb ./cmd/ckbSetup for Claude Desktop
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"ckb": {
"command": "npx",
"args": ["@tastehub/ckb", "mcp"]
}
}
}