install-app
Install iOS apps directly on simulators using session ID and app path. Enables programmatic app installation via the MCP Server for iOS Simulator.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appPath | Yes | ||
sessionId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appPath": {
"type": "string"
},
"sessionId": {
"type": "string"
}
},
"required": [
"sessionId",
"appPath"
],
"type": "object"
}