create_directory
Create a directory at a specified path using the MCP File System server. The tool ensures controlled directory management with input validation and security protocols.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Directory path to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Directory path to create",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}