list_recent_notes
Retrieve recent notes sorted by modification time or a custom date field, with optional filters for folder, tags, or frontmatter conditions to find current material.
Instructions
List notes ordered by recency (newest first), as lightweight headers. Sort by filesystem mtime or a frontmatter date field, with an optional since cutoff. Scope with folder/tags/where/match (match governs tags; where conditions all apply). Use it to find current material.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Restrict to notes carrying these tags (leading '#' optional). | |
| limit | No | Maximum number of notes to return (default 100; 0 = unbounded) | |
| match | No | Semantics of tags: 'any' (default) or 'all'. | |
| since | No | Only include notes on or after this ISO date | |
| where | No | Frontmatter conditions (query_notes syntax), e.g. { "status": "active" } or { "priority": { "gt": 3 } }. | |
| folder | No | Restrict to notes under this folder. | |
| offset | No | Rows to skip, for pagination (default 0). | |
| date_field | No | Frontmatter field to sort by instead of filesystem mtime (e.g. 'updated') |