install_app_device
Installs an app on a physical Apple device like iPhone, iPad, or Apple TV by specifying the device UDID and the .app bundle path. Part of the XcodeBuildMCP server.
Instructions
Installs an app on a physical Apple device (iPhone, iPad, Apple Watch, Apple TV, Apple Vision Pro). Requires deviceId and appPath.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appPath | Yes | Path to the .app bundle to install (full path to the .app directory) | |
deviceId | Yes | UDID of the device (obtained from list_devices) |
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"
},
"deviceId": {
"description": "UDID of the device (obtained from list_devices)",
"minLength": 1,
"type": "string"
}
},
"required": [
"deviceId",
"appPath"
],
"type": "object"
}