mcp-server-chart vs code-context-engine
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | code-context-engine by elara-labs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 120 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / 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.
code-context-engine · Summary
Local MCP server that indexes codebases to reduce AI token consumption by 94% through semantic search and compression.
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
code-context-engine · Use cases
- Reduce Claude Code and other AI coding assistant costs by up to 94%
- Maintain cross-session memory and context for AI coding agents
- Keep code private with local indexing instead of cloud solutions
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"]
}
}
}code-context-engine · Install
# Install with uv
uv tool install code-context-engine
# Or with pipx
pipx install code-context-engine
# Initialize your project
cd /path/to/your/project
cce init # or: cce init --agent allFor Claude Desktop integration, add to Claude Desktop config:
{
"mcpServers": {
"code-context-engine": {
"command": "uv",
"args": ["run", "code-context-engine", "mcp"]
}
}
}