boot_sim
Launches an iOS simulator by specifying its UUID using the boot_sim tool on the XcodeBuildMCP server. Ensures quick setup for testing and development tasks.
Instructions
Boots an iOS simulator. IMPORTANT: You MUST provide the simulatorUuid parameter. Example: boot_sim({ simulatorUuid: 'YOUR_UUID_HERE' })
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| simulatorUuid | Yes | UUID of the simulator to use (obtained from list_simulators) | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "simulatorUuid": {
      "description": "UUID of the simulator to use (obtained from list_simulators)",
      "type": "string"
    }
  },
  "required": [
    "simulatorUuid"
  ],
  "type": "object"
}