# 安装 MCP Appium - Mobile Development and Automation Server

- 类型: MCP 工具
- 说明: 帮助开发者在 iOS 和 Android 设备上进行 Appium 自动化测试与脚本创建。
- ⚠ 安全: 该 MCP 工具宣称提供 Appium 移动自动化与测试创建能力，按其功能通常需要在本机执行自动化相关进程并访问连接的移动设备，因此代码执行与数据访问应审慎对待。材料未声明密钥或远程端点，且来源为官方 Registry、近期有更新，可降低整体风险；但闭源且缺少 README/许可证，供应链透明度不足。

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "MCP Appium - Mobile Development and Automation Server" MCP 服务：
执行：claude mcp add 'io-github-appium-appium-mcp' -- npx -y appium-mcp
```

### Codex
```
请帮我安装 askskill 上的 "MCP Appium - Mobile Development and Automation Server" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-appium-appium-mcp]
command = "npx"
args = ["-y","appium-mcp"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "MCP Appium - Mobile Development and Automation Server" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-appium-appium-mcp": { "command": "npx", "args": ["-y","appium-mcp"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add io-github-appium-appium-mcp -- npx -y appium-mcp
```

### Codex
```bash
codex mcp add io-github-appium-appium-mcp -- npx -y appium-mcp
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-appium-appium-mcp]
command = "npx"
args = ["-y","appium-mcp"]
```

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-appium-appium-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appium-mcp"
      ]
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-appium-appium-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImFwcGl1bS1tY3AiXX0
