update_note
Modify existing note content in your Obsidian vault by specifying the file path and new text to update your knowledge base.
Instructions
Update an existing note's content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}