trace_app
Capture detailed performance traces of an application using 'xctrace', specifying the binary path and trace duration for analysis on the Xcode MCP Server.
Instructions
Captures a performance trace of an application using 'xctrace'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appPath | Yes | Path to the application binary to trace. | |
duration | No | Duration (in seconds) for the trace. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appPath": {
"description": "Path to the application binary to trace.",
"type": "string"
},
"duration": {
"description": "Duration (in seconds) for the trace.",
"type": "number"
}
},
"required": [
"appPath"
],
"type": "object"
}