simctl-manager
Manage iOS simulators via command-line operations using the Xcode MCP Server. Execute actions like list, create, boot, shutdown, erase, install, launch, and delete simulators efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | SimCtl 명령어 | |
extraArgs | No | 추가 simctl 인자들 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "SimCtl 명령어",
"enum": [
"list",
"create",
"boot",
"shutdown",
"erase",
"install",
"launch",
"delete"
],
"type": "string"
},
"extraArgs": {
"description": "추가 simctl 인자들",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"command"
],
"type": "object"
}