Android-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Android-MCP by CursorTouch | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 602 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
Android-MCP · Summary
Android-MCP enables AI agents to interact with Android devices via ADB for UI automation, testing and control.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Android-MCP · Use cases
- Automated UI testing for mobile applications
- AI-powered Android device control and navigation
- Mobile app development and debugging assistance
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
Android-MCP · Install
Installation
- **Prerequisites**:
- Python 3.13 - ADB (Android Debug Bridge) - Android 10+ device/emulator
- **Test ADB Connection**:
``shell adb devices `` Ensure your device is listed.
- **Configure Claude Desktop** (UVX method):
``json { "mcpServers": { "android-mcp": { "command": "uvx", "args": [ "--python", "3.13", "android-mcp" ] } } } ``
- For WiFi devices, add environment variables:
``json { "mcpServers": { "android-mcp": { "command": "uvx", "args": [ "--python", "3.13", "android-mcp" ], "env": { "ANDROID_MCP_CONNECTION": "wifi", "ANDROID_MCP_HOST": "192.168.1.3" } } } } ``
- Restart Claude Desktop to activate the integration.
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