obsidian_read_note
Read a note's content, tags, frontmatter, links, and backlinks from Obsidian. Choose markdown or JSON, or metadata only.
Instructions
Read a note's content plus its tags, frontmatter, and links.
Backlinks are only populated when Obsidian is running, since they come from Obsidian's own link index.
Args: params (ReadNoteInput): - path (str): Vault-relative path, '.md' optional - include_content (bool): False for metadata only - response_format (str): 'markdown' or 'json'
Returns: str: Markdown rendering, or JSON of the shape {"path": str, "content": str, "frontmatter": object, "tags": [str], "links": [str], "backlinks": [str], "size_bytes": int, "modified_at": str, "source": "rest"|"filesystem"} On failure: "Error: "
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |