search_notes
Find specific notes in TriliumNext using fulltext or structured queries. Specify a search term and limit results to streamline your knowledge base navigation.
Instructions
Search for notes in TriliumNext
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return | |
query | Yes | Search query (fulltext or structured, max 500 characters) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query (fulltext or structured, max 500 characters)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}