MCP Catalogs
Home

ultimate_mcp_server vs apktool-mcp-server

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

ultimate_mcp_server
by Dicklesworthstone
apktool-mcp-server
by zinja-coder
Stars★ 149★ 437
30d uses
Score8552
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsSecurityAI / LLM Tools
LanguagePythonPython
Last commit2 mo ago1 mo ago

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

apktool-mcp-server · Summary

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

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.