Back to MCP directory
publicPublicdnsLocal runtime

JoshuaRileyDev_simulator-mcp-server

iOS模拟器控制服务,提供标准化接口管理模拟器功能

article

README

🚀 iOS 模拟器 MCP 服务器

本项目是一个提供对 iOS 模拟器程序化控制的 MCP(模型上下文协议)服务器。它实现了 MCP 规范,通过标准化接口将模拟器功能暴露出来,方便开发者进行操作。

✨ 主要特性

  • 列出可用的 iOS 模拟器
  • 启动和关闭模拟器
  • 在模拟器上安装 .app bundles
  • 通过 bundle ID 启动已安装的应用程序

📦 安装指南

将以下内容添加到您的 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