get_note
Retrieve a note from your Obsidian vault by providing its path. Returns the note's content, frontmatter, tags, and outgoing wikilinks.
Instructions
Read a single note from the vault.
Args:
path: Vault-relative POSIX path to a Markdown file
(e.g. Topics/MCP.md).
Returns: The parsed note including frontmatter, tags, and outgoing wikilinks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Vault-relative POSIX path, e.g. 'Topics/MCP.md'. | |
| tags | No | Inline #tags plus frontmatter tags. | |
| title | Yes | Display title (frontmatter > first H1 > filename stem). | |
| content | Yes | Raw Markdown body, without frontmatter. | |
| truncated | No | True if the file was larger than max_file_kb and content is truncated. | |
| size_bytes | No | ||
| frontmatter | No | ||
| modified_at | No | ||
| outgoing_links | No | Targets of [[wikilinks]]. |