update_note
Modify existing notes in Obsidian vaults by updating content and metadata to maintain current information and organized knowledge management.
Instructions
Update an existing note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | New content | |
frontmatter | No | Updated frontmatter | |
path | Yes | Path to the note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New content",
"type": "string"
},
"frontmatter": {
"description": "Updated frontmatter",
"type": "object"
},
"path": {
"description": "Path to the note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path",
"content"
],
"type": "object"
}