create_note
Use this tool to generate new notes in TriliumNext, specifying title, content, type, and parent note ID for organized knowledge management and easy retrieval.
Instructions
Create a new note in TriliumNext
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the note (max 1MB) | |
parentNoteId | No | ID of the parent note (defaults to "root" if not provided) | |
title | Yes | The title of the note (max 200 characters) | |
type | No | The type of note to create | text |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the note (max 1MB)",
"type": "string"
},
"parentNoteId": {
"description": "ID of the parent note (defaults to \"root\" if not provided)",
"type": "string"
},
"title": {
"description": "The title of the note (max 200 characters)",
"type": "string"
},
"type": {
"default": "text",
"description": "The type of note to create",
"enum": [
"text",
"code",
"file",
"image",
"search",
"book",
"relationMap",
"canvas"
],
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}