A Model Context Protocol (MCP) server for interacting with iOS simulators. This server allows you to interact with iOS simulators by getting information about them, controlling UI interactions, and inspecting UI elements.
This MCP can be used effectively in agent mode as a Quality Assurance step immediately after implementing features, ensuring UI consistency and correct behavior.
After a feature implementation:
Verify UI Elements:
Verify all accessibility elements on the current screen
Confirm Text Input:
Enter "QA Test" into the text input field and confirm the input is correct
Check Tap Response:
Tap on coordinates x=250, y=400 and verify the expected element is triggered
Validate Swipe Action:
Swipe from x=150, y=600 to x=150, y=100 and confirm correct behavior
Detailed Element Check:
Describe the UI element at position x=300, y=350 to ensure proper labeling and functionality
Take Screenshot:
Take a screenshot of the current simulator screen and save it to my_screenshot.png
Record Video:
Start recording a video of the simulator screen (saves to ~/Downloads/simulator_recording_$DATE.mp4 by default)
Stop Recording:
Stop the current simulator screen recording
Edit your Cursor MCP configuration:
shell
cursor ~/.cursor/mcp.json
Add the iOS simulator server to your configuration:
json
{
"mcpServers": {
"ios-simulator": {
"command": "npx",
"args": ["-y", "ios-simulator-mcp"]
}
}
}
Restart Cursor.
Clone this repository:
shell
git clone https://github.com/joshuayoes/ios-simulator-mcp
cd ios-simulator-mcp
Install dependencies:
shell
npm install
Build the project:
shell
npm run build
Edit your Cursor MCP configuration:
shell
cursor ~/.cursor/mcp.json
Add the iOS simulator server to your configuration:
json
{
"mcpServers": {
"ios-simulator": {
"command": "node",
"args": ["/path/to/your/ios-simulator-mcp/build/index.js"]
}
}
}
Replace "/path/to/your"
with the actual path to your project directory.
MIT
MCP server for interacting with the iOS simulator
v1.2.0 - Screen Recording! 🔴📱 Latest\
\
Mar 23, 2025
No packages published