iOS Simulator MCP Server
Enables interaction with iOS simulators by providing tools to inspect UI elements, control UI interactions, and manage simulators through natural language commands.
joshuayoes
README
iOS Simulator MCP Server
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.
https://github.com/user-attachments/assets/453ebe7b-cc93-4ac2-b08d-0f8ac8339ad3
Features
- Get the ID of the currently booted iOS simulator
- Interact with the simulator UI:
- Describe all accessibility elements on screen
- Tap on screen coordinates
- Input text
- Swipe between coordinates
- Get information about UI elements at specific coordinates
- Take screenshots of the simulator screen
- Filter specific tools using environment variables
Configuration
Environment Variables
IOS_SIMULATOR_MCP_FILTERED_TOOLS
: A comma-separated list of tool names to filter out from being registered. For example:screenshot,record_video,stop_recording
💡 Use Case: QA Step in Agent Mode
This MCP can be used effectively in agent mode as a Quality Assurance step immediately after implementing features, ensuring UI consistency and correct behavior.
How to Use
After a feature implementation:
- Activate agent mode in Cursor.
- Use the prompts below to quickly validate and document UI interactions.
Example Prompts
-
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
Prerequisites
- Node.js
- macOS (as iOS simulators are only available on macOS)
- Xcode and iOS simulators installed
- Facebook IDB tool (see install guide)
Installation
Option 1: Using NPX (Recommended)
-
Edit your Cursor MCP configuration:
cursor ~/.cursor/mcp.json
-
Add the iOS simulator server to your configuration:
{ "mcpServers": { "ios-simulator": { "command": "npx", "args": ["-y", "ios-simulator-mcp"] } } }
-
Restart Cursor.
Option 2: Local Development
-
Clone this repository:
git clone https://github.com/joshuayoes/ios-simulator-mcp cd ios-simulator-mcp
-
Install dependencies:
npm install
-
Build the project:
npm run build
-
Edit your Cursor MCP configuration:
cursor ~/.cursor/mcp.json
-
Add the iOS simulator server to your configuration:
{ "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. -
Restart Cursor.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.