everything vs jadx-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | jadx-mcp-server by zinja-coder | |
|---|---|---|
| Stars | ★ 85,748 | ★ 487 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jadx-mcp-server · Summary
An MCP server for JADX-AI Plugin that enables reverse engineering of Android APKs through LLM tool calls.
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-mcp-server · Use cases
- Vulnerability detection in Android applications
- Automated code analysis for malware research
- AI-assisted reverse engineering of APKs
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-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"
}
}
}
}