create_note
Generate and organize notes in TriliumNext by specifying content, title, type, and parent note. Ideal for structuring text, code, files, or images within your note hierarchy.
Instructions
Create a new note in TriliumNext
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note | |
mime | No | MIME type for code/file/image notes | |
parentNoteId | Yes | ID of the parent note | root |
title | Yes | Title of the note | |
type | Yes | Type of note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the note",
"type": "string"
},
"mime": {
"description": "MIME type for code/file/image notes",
"type": "string"
},
"parentNoteId": {
"default": "root",
"description": "ID of the parent note",
"type": "string"
},
"title": {
"description": "Title of the note",
"type": "string"
},
"type": {
"description": "Type of note",
"enum": [
"text",
"code",
"file",
"image",
"search",
"book",
"relationMap",
"render"
],
"type": "string"
}
},
"required": [
"parentNoteId",
"title",
"type",
"content"
],
"type": "object"
}