search_notes
Enable quick and precise retrieval of notes in TriliumNext by entering a search query. Optionally include archived notes or use fast search to exclude content scanning.
Instructions
Search notes in TriliumNext
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fastSearch | No | Enable fast search (fulltext doesn't look into content) | |
includeArchivedNotes | No | Include archived notes in search results | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"fastSearch": {
"description": "Enable fast search (fulltext doesn't look into content)",
"type": "boolean"
},
"includeArchivedNotes": {
"description": "Include archived notes in search results",
"type": "boolean"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}