{"type":"mcp_server","name":"ios-simulator-mcp","description":"This repository provides an MCP server for interacting with iOS simulators, enabling UI element inspection, UI interaction control, and screenshot capture. It facilitates QA processes by automating UI validation and documentation.","category":"Developer Tools","language":"JavaScript","stars":2075,"forks":3,"owner":"joshuayoes","github_url":"https://github.com/joshuayoes/ios-simulator-mcp","homepage":null,"setup":"## Setup\n\n**Prerequisites:**\n- Node.js\n- macOS (as iOS simulators are only available on macOS)\n- [Xcode](https://developer.apple.com/xcode/resources/) and iOS simulators installed\n- Facebook [IDB](https://fbidb.io/) tool [(see install guide)](https://fbidb.io/docs/installation)\n\n**Option 1: Using NPX (Recommended)**\n1. Edit your Cursor MCP configuration:\n   ```bash\n   cursor ~/.cursor/mcp.json\n   ```\n2. Add the iOS simulator server to your configuration:\n   ```json\n   {\n     \"mcpServers\": {\n       \"ios-simulator\": {\n         \"command\": \"npx\",\n         \"args\": [\"-y\", \"ios-simulator-mcp\"]\n       }\n     }\n   }\n   ```\n3. Restart Cursor.\n\n**Option 2: Local Development**\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/joshuayoes/ios-simulator-mcp\n   cd ios-simulator-mcp\n   ```\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Build the project:\n   ```bash\n   npm run build\n   ```\n4. Edit your Cursor MCP configuration:\n   ```bash\n   cursor ~/.cursor/mcp.json\n   ```\n5. Add the iOS simulator server to your configuration:\n   ```json\n   {\n     \"mcpServers\": {\n       \"ios-simulator\": {\n         \"command\": \"node\",\n         \"args\": [\"/path/to/your/ios-simulator-mcp/build/index.js\"]\n       }\n     }\n   }\n   ```\n   Replace `\"/path/to/your\"` with the actual path to your project directory.\n6. Restart Cursor.","tools":"## Available Tools\n\n1. Get the ID of the currently booted iOS simulator (Retrieves the simulator's identifier).\n2. Describe all accessibility elements on screen (Provides a description of all accessible UI elements).\n3. Tap on screen coordinates (Simulates a tap at specified coordinates).\n4. Input text (Enters text into a text input field).\n5. Swipe between coordinates (Simulates a swipe gesture between two points).\n6. Get information about UI elements at specific coordinates (Retrieves details about a UI element at a given location).\n7. Take screenshots of the simulator screen (Captures the current screen of the simulator).\n","faq":null,"created_at":"2025-03-20T02:39:27+00:00","updated_at":"2025-03-28T22:28:21+00:00","source_url":"https://model-context-protocol.com/servers/ios-simulator-interaction-control-qa-automation","related_articles":[]}