AiDD MCP Server

create_directory

Create or ensure the existence of directories, including nested structures, to organize files or set up project workflows. Works within predefined allowed paths.

Instructions

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" }
ID: mpixtij6se