AiDD MCP Server

create_directory

Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Useful for setting up project structure or organizing files. Only works within the allowed directory. Example: Enter 'src/components' to create nested directories.

Input Schema

NameRequiredDescriptionDefault
pathYesPath of the directory to create

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path of the directory to create", "type": "string" } }, "required": [ "path" ], "type": "object" }