MCP iOS 模拟器控制服务器
用于控制iOS模拟器的MCP服务器。
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"simulator": {
"args": [
"y",
"@joshuarileydev/simulator-mcp-server"
],
"command": "npx"
}
}
}
服务介绍
iOS 模拟器 MCP 服务器
一个提供对 iOS 模拟器进行编程控制的模型上下文协议(MCP)服务器。该服务器实现了 MCP 规范,通过标准化接口暴露模拟器的功能。
特性
- 列出可用的 iOS 模拟器
- 启动和关闭模拟器
- 在模拟器上安装 .app 包
- 通过 bundle ID 启动已安装的应用程序
安装
在您的 Claude 配置 JSON 文件中添加以下内容
{
"mcpServers": {
"simulator": {
"command": "npx",
"args": [
"y",
"@joshuarileydev/simulator-mcp-server"
]
}
}
}