get_note
Retrieve the complete body of a note by its id. Use when list_notes previews are truncated to get the full content.
Instructions
Read one note in full by id.
Use this whenever you need a note's complete body — list_notes previews are cut off after 120 characters. Ids come from list_notes or create_note; this tool does not accept titles.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_id | Yes | Id of the note, as returned by `list_notes`. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stable identifier for the note. | |
| title | Yes | Short human-readable title. | |
| content | Yes | Full note body. | |
| created_at | Yes | When the note was created (UTC, ISO 8601). | |
| updated_at | Yes | When the note was last modified (UTC, ISO 8601); equals `created_at` for a note that has never been updated. |