# joshuarileydev/simulator-mcp-server [Health: Active]

**Category:** 📂 Browser Automation  
**Repository:** https://github.com/JoshuaRileyDev/simulator-mcp-server  
**GitHub Stars:** 53  
**npm Downloads (last month):** 73  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/joshuarileydev-simulator-mcp-server

## Description
An MCP server to control iOS Simulators

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

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

## Documentation & 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"
      ]
    }
  }
}
```
