xcode_get_system_info
Retrieve system details from an iOS simulator by providing its UDID, enabling efficient mobile app automation through the MCP Appium Server.
Instructions
Get system information from a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid"
],
"type": "object"
}