everything vs jadx-ai-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | jadx-ai-mcp by zinja-coder | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2,023 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jadx-ai-mcp · Summary
MCP server for JADX decompiler that enables AI-powered APK analysis with tools for reverse engineering and vulnerability detection.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingjadx-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"]
}
}
}