run_xcrun
Execute Xcode tools directly within the Xcode MCP Server by specifying the tool name and optional arguments, enabling streamlined development and testing workflows.
Instructions
Executes a specified Xcode tool via 'xcrun'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | No | Optional additional arguments to pass to the specified tool. | |
tool | Yes | Name of the Xcode tool to execute. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"arguments": {
"description": "Optional additional arguments to pass to the specified tool.",
"type": "string"
},
"tool": {
"description": "Name of the Xcode tool to execute.",
"type": "string"
}
},
"required": [
"tool"
],
"type": "object"
}