get_note_content
Retrieve the full content and metadata of a specific note by its path within an Obsidian vault, enabling efficient data access and analysis for AI-driven workflows.
Instructions
Get the full content and metadata of a specific note by path.
Args:
path: Full path to the note within the vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"title": "get_note_contentArguments",
"type": "object"
}