obsidian_get_file_contents
Read complete contents of files from your Obsidian vault to access Zettelkasten notes, understand their structure, and identify connections for creating new atomic notes.
Instructions
Read the complete contents of a single file from the vault.
Use this to read existing Zettelkasten notes, understand their structure,
and find connections for creating new atomic notes.
Args:
params (GetFileInput): Contains:
- filepath (str): Path to file relative to vault root
Returns:
str: File contents including frontmatter and body
Example:
For filepath="Zettelkasten/202411061234.md", returns the full note content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"$ref": "#/$defs/GetFileInput"
}
},
"required": [
"params"
],
"type": "object"
}