everything vs mobile-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mobile-mcp by runablehq | |
|---|---|---|
| Stars | ★ 85,748 | ★ 66 |
| 30天用量 | — | — |
| 综合分 | 77 | 37 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具automationAI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 14 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mobile-mcp · 概述
一个MCP服务器,让LLM能够通过结构化UI交互来自动化Android移动设备。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mobile-mcp · 使用场景
- 通过LLM驱动的UI交互实现自动化移动应用测试
- 跨平台移动内容抓取和数据提取
- 用于重复任务的移动应用UI自动化
- 使用AI代理实现移动优先的工作流程自动化
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmobile-mcp · 安装
安装
先决条件
- 安装[Android Studio](https://developer.android.com/studio/install)
- 确保已安装平台工具
- 验证adb命令可用
- 在模拟器中运行Android设备或通过USB调试连接物理Android手机
Claude Desktop配置
运行以下命令自动安装:
npx mobile-mcp install或手动将其添加到您的Claude Desktop配置中:
{
"mcpServers": {
"mobile-mcp": {
"command": "npx",
"args": ["mobile-mcp"]
}
}
}VS Code安装
对于VS Code:
code --add-mcp '{"name":"mobile","command":"npx","args":["mobile-mcp"]}'对于VS Code Insiders:
code-insiders --add-mcp '{"name":"mobile","command":"npx","args":["mobile-mcp"]}'