xcode_get_schemes
Retrieve a list of available schemes for an Xcode project using a specified .xcodeproj or .xcworkspace file path. Simplify Xcode build automation and project management.
Instructions
Get list of available schemes for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
xcodeproj | Yes | Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths |
Input Schema (JSON Schema)
{
"properties": {
"xcodeproj": {
"description": "Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths",
"type": "string"
}
},
"required": [
"xcodeproj"
],
"type": "object"
}