update_frontmatter
Modify frontmatter fields in Obsidian notes while preserving note content. Update metadata properties like tags, dates, or custom fields to maintain organized documentation.
Instructions
Update frontmatter fields in a note (preserves content)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
property_name | Yes | ||
property_value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
},
"property_name": {
"title": "Property Name",
"type": "string"
},
"property_value": {
"title": "Property Value",
"type": "string"
}
},
"required": [
"path",
"property_name",
"property_value"
],
"type": "object"
}