File Operations MCP Server

make_directory

Create a new directory

Input Schema

NameRequiredDescriptionDefault
pathYesPath to create the directory at
recursiveNoCreate parent directories if they don't exist

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path to create the directory at", "type": "string" }, "recursive": { "default": true, "description": "Create parent directories if they don't exist", "type": "boolean" } }, "required": [ "path" ], "type": "object" }