launch-app
Launch an iOS app on a simulator by specifying the session ID and bundle ID, enabling programmatic control through the MCP Server for iOS Simulator.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundleId | Yes | ||
sessionId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bundleId": {
"type": "string"
},
"sessionId": {
"type": "string"
}
},
"required": [
"sessionId",
"bundleId"
],
"type": "object"
}