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 | — | — |
| Score | 85 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsSecurityAI / LLM Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 1 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
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverapktool-mcp-server · Install
Installation
- Install APK Tool: https://apktool.org/docs/install
- Download the latest release: https://github.com/zinja-coder/apktool-mcp-server/releases
- Extract the archive and navigate to the apktool-mcp-server directory
- 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 fastmcpClaude 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"
]
}
}
}