reset_simulator_location
Reset the location of a specified simulator to default using its UUID, simplifying testing workflows in XcodeBuildMCP.
Instructions
Resets the simulator's location to default.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"simulatorUuid": {
"description": "UUID of the simulator to use (obtained from list_simulators)",
"type": "string"
}
},
"required": [
"simulatorUuid"
],
"type": "object"
}