read_note
Retrieve the full markdown content of a note by its repo-relative path. Returns the note body or indicates the note is not found in the indexed vault.
Instructions
Read the full markdown content of a single note by its repo-relative path (typically a path returned by search, resolve, or build_context). Read-only and bounded to indexed notes: a path that is not a committed note in the vault returns found: false with content: null, never an out-of-vault or traversal read. Use it to fetch a note's body after locating it with the other read tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Repo-relative path of the note to read, e.g. 'notes/topic.md' (typically a `path` from a search/resolve/build_context result). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| found | Yes | ||
| content | Yes | ||
| manual_reindex_recommended | Yes |