MCP Catalogs
Home

phone-mcp vs everything

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

phone-mcp
by hao-cyber
everything
by modelcontextprotocol
Stars★ 231★ 85,748
30d uses
Score4377
Official
Categories
CommunicationDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit13 mo agothis month

phone-mcp · Summary

Android phone control MCP server using ADB commands for calls, messages, apps, and UI automation.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

phone-mcp · Use cases

  • Automating phone calls and SMS messages based on AI decisions
  • Creating automated workflows that combine app launches with UI interactions
  • Analyzing phone screens to make informed decisions about next actions

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

phone-mcp · Install

Installation

# Run directly with uvx (recommended)
uvx phone-mcp

# Or install with uv
uv pip install phone-mcp

# Or install with pip
pip install phone-mcp

Configuration

Add to your AI assistant configuration:

{
    "mcpServers": {
        "phone-mcp": {
            "command": "uvx",
            "args": [
                "phone-mcp"
            ]
        }
    }
}

For pip installation, use:

{
    "mcpServers": {
        "phone-mcp": {
            "command": "/usr/local/bin/python",
            "args": [
                "-m",
                "phone_mcp"
            ]
        }
    }
}

Requirements: Python 3.7+, ADB tools, Android device with USB debugging enabled.

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