MCP Catalogs
Home

everything vs apktool-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
apktool-mcp-server
by zinja-coder
Stars★ 85,748★ 437
30d uses
Score7752
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.

apktool-mcp-server · Summary

A production-ready MCP server that enables Android APK analysis and reverse engineering with AI assistants.

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

apktool-mcp-server · Use cases

  • Automated vulnerability detection in Android APKs using AI-assisted code analysis
  • CTF challenges involving reverse engineering of mobile applications
  • Static analysis of Android apps with AI-powered suggestions for code improvements

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

apktool-mcp-server · Install

Installation

  1. Install APK Tool: https://apktool.org/docs/install
  2. Download the latest release: https://github.com/zinja-coder/apktool-mcp-server/releases
  3. Extract the archive and navigate to the apktool-mcp-server directory
  4. Install dependencies using uv:
# Install uv if not already installed
curl -LsSf https://astral.sh/uv/install.sh | sh

# Set up environment (optional)
uv venv
source .venv/bin/activate

# Install dependencies
uv pip install httpx fastmcp

Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
    "mcpServers": {
        "apktool-mcp-server": {
            "command": "/path/to/uv",
            "args": [
                "--directory",
                "/path/to/apktool-mcp-server/",
                "run",
                "apktool_mcp_server.py"
            ]
        }
    }
}
Comparison generated from public README + GitHub signals. Last updated automatically.