xcode_launch_app
Launch an app on a simulator using UDID and bundle ID, with optional arguments and debugger wait, via MCP Appium Server for mobile app automation.
Instructions
Launch an app on a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | Arguments to pass to the app | |
bundleId | Yes | Bundle identifier of the app | |
udid | Yes | The UDID of the simulator | |
waitForDebugger | No | Whether to wait for debugger |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"args": {
"description": "Arguments to pass to the app",
"items": {
"type": "string"
},
"type": "array"
},
"bundleId": {
"description": "Bundle identifier of the app",
"type": "string"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
},
"waitForDebugger": {
"description": "Whether to wait for debugger",
"type": "boolean"
}
},
"required": [
"udid",
"bundleId"
],
"type": "object"
}