https://github.com/joshuarileydev/simulator-mcp-server
https://github.com/joshuarileydev/simulator-mcp-server
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshuarileydev/simulator-mcp-server
- Owner: JoshuaRileyDev
- Created: 2024-12-13T18:24:18.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-13T18:24:21.000Z (10 months ago)
- Last Synced: 2025-03-22T22:20:00.107Z (7 months ago)
- Language: JavaScript
- Size: 5.62 MB
- Stars: 23
- Watchers: 1
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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"
]
}
}
}
```