get_sim_app_path_name_ws
Retrieve the app bundle path for a named simulator by providing workspacePath, scheme, platform, and simulatorName. Essential for XcodeBuildMCP server workflows targeting specific iOS, watchOS, tvOS, or visionOS simulators.
Instructions
Gets the app bundle path for a simulator by name using a workspace. IMPORTANT: Requires workspacePath, scheme, platform, and simulatorName. Example: get_sim_app_path_name_ws({ workspacePath: '/path/to/workspace', scheme: 'MyScheme', platform: 'iOS Simulator', simulatorName: 'iPhone 16' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Build configuration (Debug, Release, etc.) | |
platform | Yes | The target simulator platform (Required) | |
scheme | Yes | The scheme to use (Required) | |
simulatorName | Yes | Name of the simulator to use (e.g., 'iPhone 16') (Required) | |
useLatestOS | No | Whether to use the latest OS version for the named simulator | |
workspacePath | Yes | Path to the .xcworkspace file (Required) |