list-cached-responses
Retrieve recent cached build/test results from XC-MCP to manage large Xcode CLI outputs efficiently. Filter by tool and set response limits for progressive disclosure.
Instructions
List recent cached build/test results for progressive disclosure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of cached responses to return | |
tool | No | Filter by specific tool (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of cached responses to return",
"type": "number"
},
"tool": {
"description": "Filter by specific tool (optional)",
"type": "string"
}
},
"type": "object"
}