update_note
Modify existing notes by adding new content to specified files. Append information to keep your Markdown notes current and organized.
Instructions
Update the content of an existing note
Args: filename: Note filename content: New content (will be appended)
Returns: Confirmation message of update
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | ||
| content | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename",
"content"
],
"type": "object"
}