obsidian_get_frontmatter
Extract YAML frontmatter metadata from Obsidian notes to access tags, creation dates, and properties without loading full content for efficient Zettelkasten workflows.
Instructions
Extract YAML frontmatter metadata from a note.
Read metadata like tags, creation date, and other properties from Zettelkasten
notes without loading the full content.
Args:
params (GetFrontmatterInput): Contains:
- filepath (str): Path to file
Returns:
str: JSON object containing frontmatter fields
Example:
Get tags and metadata from a note to understand its classification.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"$ref": "#/$defs/GetFrontmatterInput"
}
},
"required": [
"params"
],
"type": "object"
}