create_folder
Create a new notebook or folder in Joplin by specifying a title and optional parent notebook ID for organization and structure.
Instructions
Create a new folder/notebook in Joplin
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| parent_id | No | ID of parent notebook | |
| title | Yes | Notebook title | 
Input Schema (JSON Schema)
{
  "properties": {
    "parent_id": {
      "description": "ID of parent notebook",
      "type": "string"
    },
    "title": {
      "description": "Notebook title",
      "type": "string"
    }
  },
  "required": [
    "title"
  ],
  "type": "object"
}