xcode_show_destinations
List available destinations for a given Xcode project and scheme to streamline testing and deployment workflows.
Instructions
Show available destinations for a scheme
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to .xcodeproj file | |
scheme | Yes | Scheme name |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "Scheme name",
"type": "string"
}
},
"required": [
"project_path",
"scheme"
],
"type": "object"
}