get_note
Retrieve a note and its content by ID using the MCP server, enabling efficient access to stored information in TriliumNext Notes.
Instructions
Get a note and its content by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeContent | No | Whether to include the note's content in the response | |
noteId | Yes | ID of the note to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"includeContent": {
"default": true,
"description": "Whether to include the note's content in the response",
"type": "boolean"
},
"noteId": {
"description": "ID of the note to retrieve",
"type": "string"
}
},
"required": [
"noteId"
],
"type": "object"
}