create_directory
Create nested directories in your MCP Notes system to organize and structure your personal knowledge base efficiently. Specify the relative path for easy setup.
Instructions
Create a new directory in your notes. Can create nested directories in one operation. Path should be relative to your notes directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Directory path to create, relative to notes directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Directory path to create, relative to notes directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}