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 Qtty
Stars★ 85,748★ 23
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
SecurityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJava
Last committhis month9 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-everything

jadx-mcp-server · Install

Installation

  1. Clone the repository
git clone <repository-url>
cd jadx-mcp-server
  1. Build the project
chmod +x build.sh
./build.sh

Or build with Maven:

mvn clean package
  1. 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"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.