search_notes
Find notes by keyword, tag, or both. Returns summaries of matching notes sorted by most recent update.
Instructions
Search notes by keyword, by tag, or both (filters combine with AND).
Results are summaries (ID, title, snippet, tags) ordered newest-updated
first — fetch the full body of a hit with get_note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Return only notes carrying this exact tag (case-insensitive). | |
| limit | No | Maximum number of results. | |
| query | No | Keyword to match against note titles and bodies (case-insensitive substring). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | Yes | The tag that was filtered on, if any. | |
| count | Yes | Number of notes matched (up to the limit). | |
| notes | Yes | Matching notes, most recently updated first. | |
| query | Yes | The keyword query that was searched, if any. |