zk_list_notes_by_date
Filter and retrieve notes from a Zettelkasten system within a specified date range. Supports searching by creation or update dates and allows limiting results for efficient note organization.
Instructions
List notes created or updated within a date range. Args: start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) use_updated: Whether to use updated_at instead of created_at limit: Maximum number of results to return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
limit | No | ||
start_date | No | ||
use_updated | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
},
"use_updated": {
"default": false,
"title": "Use Updated",
"type": "boolean"
}
},
"title": "zk_list_notes_by_dateArguments",
"type": "object"
}