xcode_debug
Initiate debugging sessions for Xcode projects by specifying the project path, optional scheme, and build settings. Simplify debugging workflows directly in Xcode.
Instructions
Start debugging session for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scheme | No | Scheme name (optional) | |
skip_building | No | Whether to skip building | |
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": {
"scheme": {
"description": "Scheme name (optional)",
"type": "string"
},
"skip_building": {
"description": "Whether to skip building",
"type": "boolean"
},
"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"
}