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 Qtty | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 9 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
A pure-Java MCP server enabling AI assistants to analyze and decompile Android APK files using JADX.
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
- Security researchers analyzing Android malware for defensive purposes
- Developers reviewing third-party SDKs before integration
- Analysts performing vulnerability assessments on Android applications
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
- Clone the repository
git clone <repository-url>
cd jadx-mcp-server- Build the project
chmod +x build.sh
./build.shOr build with Maven:
mvn clean package- Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"jadx-analyzer": {
"command": "java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"/path/to/jadx-mcp-server/target/jadx-mcp-server-1.0.0.jar"
]
}
}
}