Course
Give your AI a permanent memory of your business. A course for people who use ChatGPT or Claude daily.Compound Context
localJavaScript

About simulator-mcp-server

This MCP server lets your AI assistant manage iOS simulators directly on your Mac. You can view available devices, turn them on or off, install your compiled application files, and launch them instantly to check your work without manual clicks.

Tools (5)

list_simulators

Lists available iOS simulators

boot_simulator

Boots a simulator

shutdown_simulator

Shuts down a simulator

install_app

Installs .app bundles on a simulator

launch_app

Launches installed apps by bundle ID on a simulator

README

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"
      ]
    }
  }
}