create_note
Generate and organize notes in Joplin by adding titles, markdown or HTML content, todos, and images, while optionally nesting them within specific notebooks.
Instructions
Create a new note in Joplin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Note content in Markdown | |
body_html | No | Note content in HTML | |
image_data_url | No | Base64 encoded image data URL | |
is_todo | No | Whether this is a todo note | |
parent_id | No | ID of parent notebook | |
title | No | Note title |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Note content in Markdown",
"type": "string"
},
"body_html": {
"description": "Note content in HTML",
"type": "string"
},
"image_data_url": {
"description": "Base64 encoded image data URL",
"type": "string"
},
"is_todo": {
"description": "Whether this is a todo note",
"type": "boolean"
},
"parent_id": {
"description": "ID of parent notebook",
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
}
},
"type": "object"
}