read_note
Extract and access specific notes from an Obsidian vault by specifying the vault path and note path, enabling direct file system operations without plugins or REST API.
Instructions
Read a note from the vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
note_path | Yes | Path to the note relative to vault root (with or without .md extension) | |
vault_path | Yes | Path to the Obsidian vault |
Input Schema (JSON Schema)
{
"properties": {
"note_path": {
"description": "Path to the note relative to vault root (with or without .md extension)",
"type": "string"
},
"vault_path": {
"description": "Path to the Obsidian vault",
"type": "string"
}
},
"required": [
"vault_path",
"note_path"
],
"type": "object"
}