xcode_record_video
Record simulator screen activity by specifying the UDID and output path. Ideal for capturing mobile app automation workflows using the MCP Appium Server.
Instructions
Start recording video of a simulator (returns process info)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | Yes | Path where video should be saved | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "Path where video should be saved",
"type": "string"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"outputPath"
],
"type": "object"
}