install_app_sim
Install an iOS application on a specified simulator by providing the simulator UUID and the full path to the .app bundle using this MCP tool.
Instructions
Installs an app in an iOS simulator. IMPORTANT: You MUST provide both the simulatorUuid and appPath parameters. Example: install_app_sim({ simulatorUuid: 'YOUR_UUID_HERE', appPath: '/path/to/your/app.app' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appPath | Yes | Path to the .app bundle to install (full path to the .app directory) | |
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": {
"appPath": {
"description": "Path to the .app bundle to install (full path to the .app directory)",
"type": "string"
},
"simulatorUuid": {
"description": "UUID of the simulator to use (obtained from list_simulators)",
"type": "string"
}
},
"required": [
"simulatorUuid",
"appPath"
],
"type": "object"
}