create_note
Create a new note in Joplin with specified title, Markdown content, folder ID, or todo status. Manage notes effectively using structured inputs and retrieve created note data.
Instructions
Create a new note in Joplin.
Args:
args: Note creation parameters
title: Note title
body: Note content in Markdown (optional)
parent_id: ID of parent folder (optional)
is_todo: Whether this is a todo item (optional)
Returns:
Dictionary containing the created note data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateNoteInput": {
"description": "Input parameters for creating a note.",
"properties": {
"body": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Body"
},
"is_todo": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"title": "Is Todo"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title"
],
"title": "CreateNoteInput",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/CreateNoteInput"
}
},
"required": [
"args"
],
"title": "create_noteArguments",
"type": "object"
}