Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README 2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# iOS Simulator MCP Server
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/JoshuaRileyDev/simulator-mcp-server)](https://archestra.ai/mcp-catalog/joshuarileydev__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"
]
}
}
}
```
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# iOS Simulator MCP Server
[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/JoshuaRileyDev/simulator-mcp-server)](https://archestra.ai/mcp-catalog/joshuarileydev__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.

Expand Down
30 changes: 30 additions & 0 deletions package 2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "@joshuarileydev/simulator-mcp-server",
"version": "0.0.1",
"description": "An MCP server for controlling iOS simulators",
"license": "MIT",
"type": "module",
"private": false,
"bin": {
"simulator-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/src/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@types/node-fetch": "^2.6.12",
"node-fetch": "^3.3.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}
Loading