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 Qtty | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jadx-mcp-server · Summary
A pure-Java MCP server enabling AI assistants to analyze and decompile Android APK files using JADX.
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
- Security researchers analyzing Android malware for defensive purposes
- Developers reviewing third-party SDKs before integration
- Analysts performing vulnerability assessments on Android applications
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
- 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"
]
}
}
}