everything vs mobile-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mobile-mcp by runablehq | |
|---|---|---|
| Stars | ★ 85,748 | ★ 66 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsautomationAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mobile-mcp · Summary
An MCP server that enables LLMs to automate Android mobile devices through structured UI interaction.
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
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
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-everythingmobile-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"]}'