ultimate_mcp_server vs mobile-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mobile-mcp by runablehq | |
|---|---|---|
| Stars | ★ 149 | ★ 66 |
| 30d uses | — | — |
| Score | 85 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsautomationAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 14 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.
mobile-mcp · Summary
An MCP server that enables LLMs to automate Android mobile devices through structured UI interaction.
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
mobile-mcp · Use cases
- Automated mobile app testing through LLM-driven UI interactions
- Cross-platform mobile content scraping and data extraction
- Mobile app UI automation for repetitive tasks
- Mobile-first workflow automation using AI agents
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_servermobile-mcp · Install
Installation
Prerequisites
- Install [Android Studio](https://developer.android.com/studio/install)
- Ensure platform tools are installed
- Verify adb command is available
- Either run an Android device in emulator or connect physical Android phone with USB debugging on
Claude Desktop Configuration
Run the following command to install it automatically:
npx mobile-mcp installOr add this to your Claude Desktop config manually:
{
"mcpServers": {
"mobile-mcp": {
"command": "npx",
"args": ["mobile-mcp"]
}
}
}VS Code Installation
For VS Code:
code --add-mcp '{"name":"mobile","command":"npx","args":["mobile-mcp"]}'For VS Code Insiders:
code-insiders --add-mcp '{"name":"mobile","command":"npx","args":["mobile-mcp"]}'