list_schemes
List all Xcode project or workspace schemes, including shared ones, with a specified path. Simplify development by identifying available schemes for building, testing, or running Apple platform projects efficiently.
Instructions
List all available schemes in an Xcode project or workspace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Path to the Xcode project or workspace | |
| shared | No | Include shared schemes (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"projectPath": {
"description": "Path to the Xcode project or workspace",
"type": "string"
},
"shared": {
"default": true,
"description": "Include shared schemes (default: true)",
"type": "boolean"
}
},
"required": [
"projectPath"
],
"type": "object"
}