MCP Catalogs
Home

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
Score7737
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsautomationAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month14 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-everything

mobile-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 install

Or 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"]}'
Comparison generated from public README + GitHub signals. Last updated automatically.