MCP Catalogs
Home

everything vs phonepi-mcp

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

everything
by modelcontextprotocol
phonepi-mcp
by priyankark
Stars★ 85,748★ 34
30d uses
Score7735
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationProductivityDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month13 mo ago

everything · Summary

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

phonepi-mcp · Summary

PhonePi MCP provides 23+ tools to control your smartphone remotely from AI assistants.

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

phonepi-mcp · Use cases

  • Managing SMS and contacts through natural language commands in Claude Desktop or Cursor
  • Automating phone tasks using AI workflows and tool calling
  • Monitoring phone status and controlling settings remotely

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

phonepi-mcp · Install

Installation

  1. Clone the repository
git clone https://github.com/priyankark/phonepi-mcp.git
cd phonepi-mcp
  1. Install dependencies
npm install
  1. Set up the mobile app (see phonepimcp.com for detailed instructions)
  1. Configure Claude Desktop:

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "phonepi": {
      "command": "node",
      "args": ["path/to/server.js"],
      "env": {}
    }
  }
}
  1. Start the server
npm start
Comparison generated from public README + GitHub signals. Last updated automatically.