create_directory
Generate or verify directory existence at a specified path using Filesystem MCP Server, ensuring efficient file organization and accessibility.
Instructions
Create new directory or ensure it exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the directory to create |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the directory to create",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}