create-simulator-session
Generate and manage iOS simulator sessions programmatically by specifying device details, platform version, timeout, and autoboot settings using MCP Server for iOS Simulator.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoboot | No | ||
deviceName | No | ||
platformVersion | No | ||
timeout | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"autoboot": {
"type": "boolean"
},
"deviceName": {
"type": "string"
},
"platformVersion": {
"type": "string"
},
"timeout": {
"type": "number"
}
},
"type": "object"
}