get_note_metadata
Retrieve metadata for specific notes in your Obsidian vault to access file properties, tags, and frontmatter information for better organization and analysis.
Instructions
Get metadata for a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Note path | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Note path",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}