read_note
Read an Obsidian note's content—return metadata, linked notes, and optional full body with edge context. Suggests follow-ups like creating missing linked notes.
Instructions
Read a note's content. Brief mode (default) returns title + metadata + linked-note titles; full mode returns full content + edge context. Full mode also reports truncated: true when the body exceeded maxContentLength (default 2000 chars) and was sliced. Response is wrapped as {data, context} where context.next_actions suggests follow-ups like creating missing linked notes or exploring outgoing connections.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Path, filename, or fuzzy match for the note to read. | |
| mode | No | Default `"brief"` (metadata + linked-note titles). `"full"` adds the body + edge context. | |
| maxContentLength | No | In `full` mode, max body chars before truncation. Default 2000. |