fast_create_directory
Create directories programmatically with optional recursive functionality, designed for the stable and reliable fast-filesystem-mcp server.
Instructions
디렉토리를 생성합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | 생성할 디렉토리 경로 | |
recursive | No | 재귀적 생성 |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "생성할 디렉토리 경로",
"type": "string"
},
"recursive": {
"default": true,
"description": "재귀적 생성",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}