get_note
Retrieve a single note by its ID or exact title. Returns the full note including body. Use when you know the note's identifier.
Instructions
Retrieve a single note by its ID or exact title.
Provide note_id OR title (note_id wins if both are given). Returns the
full note including its body. Use search_notes for fuzzy matching.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Exact title of the note (case-insensitive). Used when note_id is not given; if several notes share the title, the most recently updated one is returned. | |
| note_id | No | ID of the note to fetch. Preferred when known. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Unique numeric ID of the note. | |
| body | Yes | Full body text of the note. | |
| tags | Yes | Tags attached to the note. | |
| title | Yes | Title of the note. | |
| created_at | Yes | Creation time (ISO 8601, UTC). | |
| updated_at | Yes | Last modification time (ISO 8601, UTC). |