xcode_install_app_simulator
Install an iOS/macOS app on a simulator by specifying the device ID and app bundle path, enabling automated testing and project management via the Xcode MCP Server.
Instructions
Install an app on a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_path | Yes | Path to .app bundle | |
device_id | Yes | Simulator device ID |
Input Schema (JSON Schema)
{
"properties": {
"app_path": {
"description": "Path to .app bundle",
"type": "string"
},
"device_id": {
"description": "Simulator device ID",
"type": "string"
}
},
"required": [
"device_id",
"app_path"
],
"type": "object"
}