mcp-server-chart vs codebadger
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | codebadger by Lekssays | |
|---|---|---|
| Stars | ★ 4,068 | ★ 102 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityKnowledge Graph |
| Language | TypeScript | Python |
| 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.
codebadger · Summary
Containerized MCP server for static code analysis using Joern's CPG with multi-language support.
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
codebadger · Use cases
- Security vulnerability detection in codebases
- Code analysis and understanding of large projects
- Integration with LLM assistants for program analysis
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"]
}
}
}codebadger · Install
Installation
- Install prerequisites:
```bash # Docker and Docker Compose docker --version docker-compose --version
# Python 3.10+ python --version ```
- Install Python dependencies:
``bash python -m venv venv pip install -r requirements.txt ``
- Start Joern Docker services:
``bash docker compose up -d ``
- Start the MCP server:
``bash python main.py ``
Claude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"codebadger": {
"url": "http://localhost:4242/mcp",
"type": "http"
}
}
}