Read Note
vault_read_noteRetrieve the full content or parsed properties of a markdown note using its vault-relative path. Returns raw markdown or JSON properties.
Instructions
Read a markdown note by its vault-relative path. Returns the full raw content including properties, or just the parsed properties when properties_only is set.
Example: vault_read_note({ path: "Projects/vault-cortex.md" }) Example: vault_read_note({ path: "Projects/vault-cortex.md", properties_only: true })
When to use: You know the exact path and need the full content of a specific note. Use properties_only: true when you only need properties (saves tokens on large notes). Prefer vault_search when you don't know the path. Prefer vault_get_memory for About Me/ files (returns content without properties).
Returns: Raw markdown string (default), or JSON object of properties (when properties_only: true).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Vault-relative path to the note (e.g. "About Me/Principles.md") | |
| properties_only | No | If true, returns parsed properties as JSON instead of full note content |