get_note_info_tool
Extract metadata and statistics from an Obsidian note by its path, enabling efficient retrieval of note information without accessing the full content directly.
Instructions
Get metadata and information about a note without retrieving its full content.
Args:
path: Path to the note
Returns:
Note metadata and statistics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ctx | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ctx": {
"default": null,
"title": "Ctx"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}