get_note
Retrieve notes from your Obsidian vault by specifying the vault name and file path to access specific documents and their content.
Instructions
Get a note by its path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}