xcode_create_directory
Create directories and subdirectories programmatically within Xcode projects using the Xcode MCP Server. Specify the path to automate directory structure setup for iOS/macOS projects.
Instructions
Create a directory with subdirectories if needed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Directory path to create |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Directory path to create",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}