create_folder
Creates folders at a specified path, including any missing parent folders, so notes can be saved into organized locations. Ensures the folder exists before creating a note.
Instructions
Create a folder at path, making any missing parent folders along the way.
path is a full path like "Personal/Projects/Roadmap"; each segment that does not exist
yet is created under the one before it (the first under the top level). A path that
already exists is left untouched. This is separate from create_note on purpose:
create_note still REFUSES an unknown folder, so a typo files nothing by surprise --
call this first to make the folder deliberately, then create the note into it.
Folders are addressed by id (built from the store UUID), so nesting under a folder whose name is not unique still works. Refuses if a parent path is itself ambiguous.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |