create_notebook
Create a new notebook in Joplin to organize notes, including sub-notebooks under a parent notebook with an optional emoji icon.
Instructions
Create a new notebook (folder) in Joplin to organize your notes.
Creates a new notebook that can be used to organize and contain notes. You can create top-level notebooks or sub-notebooks within existing notebooks, optionally with an emoji icon shown in Joplin's sidebar.
Notebook can be specified by name or path:
"Work" - matches notebook named "Work" (must be unique)
"Projects/Work" - matches "Work" notebook inside "Projects"
Returns: str: Success message containing the created notebook's title and unique ID.
Examples: - create_notebook("Work Projects") - Create a top-level notebook - create_notebook("2024 Projects", "Work") - Create a sub-notebook under "Work" - create_notebook("Tasks", "Projects/Work") - Create a sub-notebook by path - create_notebook("Tasks", emoji="🎯") - Create a notebook with an emoji icon
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Notebook title | |
| parent_name | No | Parent notebook name or path (e.g., 'Work' or 'Projects/Work'). Omit for a top-level notebook. | |
| emoji | No | Single emoji glyph to use as the notebook's icon (optional) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |