See what people built during the Apps HackathonExplore the gallery
Back to Catalog

simulator-mcp-server

JoshuaRileyDev/simulator-mcp-server
🔗 Latest commit:f16cfd1
JavaScript
Development

MCP server from JoshuaRileyDev/simulator-mcp-server

GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:46
👥 Contributors:1
📋 Total Issues:0
📦 Has Releases:No
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
{
  "joshuarileydev-simulator-mcp-server": {
    "command": "npx",
    "args": [
      "y",
      "@joshuarileydev/simulator-mcp-server"
    ],
    "env": {}
  }
}
README.md

iOS Simulator MCP Server

A Model Context Protocol (MCP) server that provides programmatic control over iOS simulators. This server implements the MCP specification to expose simulator functionality through a standardized interface.

Features

  • List available iOS simulators
  • Boot and shutdown simulators
  • Install .app bundles on simulators
  • Launch installed apps by bundle ID

Installation

Add the following to your Claude Config JSON file

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