Back to MCP directory
publicPublicdnsLocal runtime

simulator-mcp-server

一个提供iOS模拟器程序化控制的MCP服务

article

README

🚀 iOS 模拟器 MCP 服务器

这是一个模型上下文协议 (MCP) 服务器,可对 iOS 模拟器进行程序化控制。该服务器遵循 MCP 规范,通过标准化接口将模拟器的各项功能开放出来。

🚀 快速开始

此服务器能助力开发者便捷地对 iOS 模拟器进行程序化控制,通过标准化接口实现多种操作。

✨ 主要特性

  • 列出可用的 iOS 模拟器
  • 启动和关闭模拟器
  • 在模拟器上安装 .app 捆绑包
  • 通过捆绑包标识符启动已安装的应用程序

📦 安装指南

将以下内容完整地添加到您的 Claude 配置 JSON 文件中:

{
  "mcpServers": {
    "simulator": {
      "command": "npx",
      "args": [
        "y",
        "@joshuarileydev/simulator-mcp-server"
      ]
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client