MCP Catalogs
Home

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
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptPython
Last committhis month1 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-everything

jadx-mcp-server · Install

Installation

  1. Download the latest release from [GitHub](https://github.com/zinja-coder/jadx-ai-mcp/releases)
  1. Install required dependencies:
pip install -r requirements.txt
  1. Start the MCP server:
python server.py
  1. Configure Claude Desktop to use the server:
{
  "mcpServers": {
    "jadx": {
      "command": "python",
      "args": ["path/to/server.py"],
      "env": {
        "JADX_HOST": "localhost",
        "JADX_PORT": "8080"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.