mcp-server-chart vs jadx-ai-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jadx-ai-mcp by zinja-coder | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,023 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| 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.
jadx-ai-mcp · Summary
MCP server for JADX decompiler that enables AI-powered APK analysis with tools for reverse engineering and vulnerability detection.
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
jadx-ai-mcp · Use cases
- AI-assisted reverse engineering of Android APKs to understand application structure and behavior
- Automated vulnerability detection in Android applications through AI analysis of decompiled code
- Real-time code review and refactoring suggestions during debugging sessions
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"]
}
}
}jadx-ai-mcp · Install
Installation
- Download the latest releases from [GitHub](https://github.com/zinja-coder/jadx-ai-mcp/releases)
- Extract the
jadx-mcp-server-<version>.zipfile - Install Python dependencies:
pip install -r jadx-mcp-server/requirements.txt - Run JADX with the plugin:
java -jar jadx-ai-mcp-<version>.jar - Start the MCP server:
python jadx_mcp.py
Claude Desktop configuration:
{
"mcpServers": {
"jadx": {
"command": "python",
"args": ["/path/to/jadx_mcp.py"]
}
}
}