Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
iOS Simulator
smartphone

iOS Simulator MCP Server

MCP server for iOS simulator control

iossimulatorxcodetestingapple

About

## iOS Simulator MCP Server: iOS Development Automation The **iOS Simulator MCP Server** integrates iOS Simulator control into Google Antigravity, enabling developers to automate iOS app testing, capture screenshots, and interact with simulated devices programmatically. ### Why iOS Simulator MCP? - **Device control** - Boot, shutdown, and manage simulators - **App installation** - Install and launch iOS apps - **UI automation** - Interact with app interfaces - **Screenshot capture** - Capture simulator screens - **Log access** - Access simulator logs ### Key Features #### 1. Device Management ```python # List available devices devices = await mcp.call("ios-sim", "list_devices", {}) for device in devices: print(f"{device[\"name\"]}: {device[\"state\"]}") # Boot simulator await mcp.call("ios-sim", "boot", { "udid": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" }) # Shutdown simulator await mcp.call("ios-sim", "shutdown", { "udid": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" }) ``` #### 2. App Management ```python # Install app await mcp.call("ios-sim", "install_app", { "udid": "...", "app_path": "/path/to/MyApp.app" }) # Launch app await mcp.call("ios-sim", "launch_app", { "udid": "...", "bundle_id": "com.example.myapp" }) # Terminate app await mcp.call("ios-sim", "terminate_app", { "udid": "...", "bundle_id": "com.example.myapp" }) ``` #### 3. UI Interaction ```python # Tap screen await mcp.call("ios-sim", "tap", { "udid": "...", "x": 200, "y": 400 }) # Type text await mcp.call("ios-sim", "type_text", { "udid": "...", "text": "Hello World" }) # Take screenshot screenshot = await mcp.call("ios-sim", "screenshot", { "udid": "...", "output": "/tmp/screenshot.png" }) ``` #### 4. Device Utilities ```python # Open URL in Safari await mcp.call("ios-sim", "open_url", { "udid": "...", "url": "https://example.com" }) # Set location await mcp.call("ios-sim", "set_location", { "udid": "...", "latitude": 37.7749, "longitude": -122.4194 }) ``` ### Configuration ```json { "mcpServers": { "ios-sim": { "command": "npx", "args": ["-y", "@anthropic/mcp-ios-simulator"] } } } ``` ### Use Cases **App Testing**: Automate iOS app testing. **Screenshot Generation**: Capture app store screenshots. **CI/CD Testing**: Run tests in simulator. **Demo Recording**: Record app demonstrations. The iOS Simulator MCP Server enables iOS development automation.

Installation

Configuration
{
  "mcpServers": {
    "ios-simulator": {
      "mcpServers": {
        "ios-simulator": {
          "args": [
            "-y",
            "ios-simulator-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. Requires Xcode and macOS
  2. 22. Control UI interactions and take screenshots
  3. 33. Inspect UI elements for QA

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers