get_note
Retrieve a specific note's content and metadata from an Obsidian vault using a local REST API for efficient note management and file operations.
Instructions
Get a specific note with its content and metadata (legacy)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the note |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the note",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}