simctl-get-details
Retrieve filtered simulator details from cached simctl-list data by specifying cache ID, detail type, device, runtime, or max devices. Optimizes Xcode CLI usage within MCP limits.
Instructions
Get detailed simulator information from cached simctl-list results with progressive disclosure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheId | Yes | Cache ID from previous simctl-list call | |
detailType | Yes | Type of details to retrieve | |
deviceType | No | Filter by device type (iPhone, iPad, etc.) | |
maxDevices | No | Maximum number of devices to return | |
runtime | No | Filter by runtime version |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cacheId": {
"description": "Cache ID from previous simctl-list call",
"type": "string"
},
"detailType": {
"description": "Type of details to retrieve",
"enum": [
"full-list",
"devices-only",
"runtimes-only",
"available-only"
],
"type": "string"
},
"deviceType": {
"description": "Filter by device type (iPhone, iPad, etc.)",
"type": "string"
},
"maxDevices": {
"default": 20,
"description": "Maximum number of devices to return",
"type": "number"
},
"runtime": {
"description": "Filter by runtime version",
"type": "string"
}
},
"required": [
"cacheId",
"detailType"
],
"type": "object"
}