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 | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 13 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-everythingphonepi-mcp · Install
Installation
- Clone the repository
git clone https://github.com/priyankark/phonepi-mcp.git
cd phonepi-mcp- Install dependencies
npm install- Set up the mobile app (see phonepimcp.com for detailed instructions)
- Configure Claude Desktop:
Add to your claude_desktop_config.json:
{
"mcpServers": {
"phonepi": {
"command": "node",
"args": ["path/to/server.js"],
"env": {}
}
}
}- Start the server
npm start