search_entries
Search and filter journal entries by date, tags, keywords, or starred status using specific parameters to retrieve relevant results efficiently.
Instructions
Search and filter journal entries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contains | No | Text to search for | |
from | No | Start date (e.g., "yesterday", "2024-01-01") | |
journal | No | Journal name (uses current/default if not specified) | |
limit | No | Maximum number of entries | |
starred | No | Only show starred entries | |
tags | No | Tags to filter by | |
to | No | End date |
Input Schema (JSON Schema)
{
"properties": {
"contains": {
"description": "Text to search for",
"type": "string"
},
"from": {
"description": "Start date (e.g., \"yesterday\", \"2024-01-01\")",
"type": "string"
},
"journal": {
"description": "Journal name (uses current/default if not specified)",
"type": "string"
},
"limit": {
"description": "Maximum number of entries",
"type": "number"
},
"starred": {
"description": "Only show starred entries",
"type": "boolean"
},
"tags": {
"description": "Tags to filter by",
"items": {
"type": "string"
},
"type": "array"
},
"to": {
"description": "End date",
"type": "string"
}
},
"type": "object"
}