mcp-server-chart vs jadx-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | jadx-mcp-server by zinja-coder | |
|---|---|---|
| Stars | ★ 4,068 | ★ 487 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| 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.
jadx-mcp-server · Summary
An MCP server for JADX-AI Plugin that enables reverse engineering of Android APKs through LLM tool calls.
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-mcp-server · Use cases
- Vulnerability detection in Android applications
- Automated code analysis for malware research
- AI-assisted reverse engineering of APKs
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-mcp-server · Install
Installation
- Download the latest release from [GitHub](https://github.com/zinja-coder/jadx-ai-mcp/releases)
- Install required dependencies:
pip install -r requirements.txt- Start the MCP server:
python server.py- Configure Claude Desktop to use the server:
{
"mcpServers": {
"jadx": {
"command": "python",
"args": ["path/to/server.py"],
"env": {
"JADX_HOST": "localhost",
"JADX_PORT": "8080"
}
}
}
}