cache-clear
Clear specified cached data (simulator, project, response, or all) to ensure fresh data retrieval in XC-MCP server operations, resolving issues with excessive token limits in Xcode CLI tool output.
Instructions
Clear cached data to force fresh data retrieval
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheType | Yes | Which cache to clear |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cacheType": {
"description": "Which cache to clear",
"enum": [
"simulator",
"project",
"response",
"all"
],
"type": "string"
}
},
"required": [
"cacheType"
],
"type": "object"
}