zk_update_note
Modify existing notes in a Zettelkasten system by updating title, content, type, or tags. Use this tool to keep your knowledge base organized and relevant.
Instructions
Update an existing note. Args: note_id: The ID of the note to update title: New title (optional) content: New content (optional) note_type: New note type (optional) tags: New comma-separated list of tags (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
note_id | Yes | ||
note_type | No | ||
tags | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Content"
},
"note_id": {
"title": "Note Id",
"type": "string"
},
"note_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Note Type"
},
"tags": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
}
},
"required": [
"note_id"
],
"title": "zk_update_noteArguments",
"type": "object"
}