launch_app_sim
Launch an app on an iOS simulator by specifying the simulator UUID and app bundle ID. Requires pre-installed app in the simulator. Use for workflow: build → install → launch.
Instructions
Launches an app in an iOS simulator. IMPORTANT: You MUST provide both the simulatorUuid and bundleId parameters.
Note: You must install the app in the simulator before launching. The typical workflow is: build → install → launch. Example: launch_app_sim({ simulatorUuid: 'YOUR_UUID_HERE', bundleId: 'com.example.MyApp' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | Additional arguments to pass to the app | |
bundleId | Yes | Bundle identifier of the app to launch (e.g., 'com.example.MyApp') | |
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": {
"args": {
"description": "Additional arguments to pass to the app",
"items": {
"type": "string"
},
"type": "array"
},
"bundleId": {
"description": "Bundle identifier of the app to launch (e.g., 'com.example.MyApp')",
"type": "string"
},
"simulatorUuid": {
"description": "UUID of the simulator to use (obtained from list_simulators)",
"type": "string"
}
},
"required": [
"simulatorUuid",
"bundleId"
],
"type": "object"
}