create_directory
Organize your notes efficiently by creating new directories or nested folders relative to your notes directory using this MCP Notes tool.
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
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Directory path to create, relative to notes directory |
Implementation Reference
- src/tools/index.ts:360-361 (registration)The create_directory tool is registered in the handleToolCall switch statement. It delegates execution to the handleCreateDirectory function imported from filesystem.js.case "create_directory": return await handleCreateDirectory(notesPath, args);