get_note
Reads a single Apple Note by id or title and returns its body as Markdown or HTML, preserving rich formatting like checkboxes and highlights.
Instructions
Read one note by id (preferred) or by title. The body comes back as Markdown and never repeats the title, which is already the note's name. The default reads the note's own store, so checked boxes, block quotes, link targets and highlights come back intact; rich:false means the store was out of reach and the body degraded to the exported HTML, which carries none of those. format=html returns the raw HTML. Attachments appear as placeholder marks, never bytes: to copy a note to disk or a vault, use export_note, which writes the images as files too.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Note id from list/search results. Wins over name. | |
| name | No | Note title. Must match one note; ambiguity returns candidates. | |
| folder | No | Folder name or path to narrow a name lookup. | |
| format | No | Body format, default markdown: the full-fidelity store read. html returns Notes' exported body. |