xcode_get_projects
Retrieve a list of projects within a specified Xcode workspace or project file. Supports both absolute and relative paths for seamless integration with Xcode build automation.
Instructions
Get list of projects in a specific workspace
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"
}