mcp-server-chart vs jebmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jebmcp by flankerhqd | |
|---|---|---|
| Stars | ★ 4,068 | ★ 235 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / LLM Tools |
| 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.
jebmcp · Summary
MCP server enabling AI assistants to interact with JEB Pro reverse engineering tool for binary analysis.
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
jebmcp · Use cases
- Automated vulnerability detection in Android APK files using AI analysis
- Code refactoring assistance with automated renaming of methods and classes
- Reverse engineering support by providing AI-powered analysis of application structure
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"]
}
}
}jebmcp · Install
Installation
Requirements
- Python >= 3.11
- uv: https://docs.astral.sh/uv/getting-started/installation/
Steps
- Copy the src/jeb_mcp/MCP.py to $JEB_INSTALLATION_DIR/scripts
- Start the script in JEB GUI (
File->Scripts->Scripts selector...) - Add the MCP server configuration in your client (e.g., Cline, Cursor)
Example configuration:
{
"mcpServers": {
"jeb": {
"command": "uv",
"args": ["--directory", "jeb-mcp/src/jeb_mcp", "run", "server.py"],
"timeout": 1800,
"disabled": false
}
}
}