notlai_update_note
Update an existing note by changing only specified fields: title, content, tags, folder, or favorite status. Supports Markdown formatting.
Instructions
Update an existing note. Only provided fields will be changed. Content supports Markdown formatting. Use notlai_list_notes to find the note ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | New tags to assign (replaces all current tags). Pass [] to remove all tags. Omit to keep current tags. | |
| title | No | New title (omit to keep current) | |
| noteId | Yes | The note ID to update (ULID format) | |
| content | No | New content in Markdown format (omit to keep current). Supports headings, bold, italic, lists, code blocks, links, blockquotes, and tables. | |
| folderId | No | Move to a folder by ID, or pass null to move back to root. Omit to keep current folder. | |
| isFavorite | No | Set favorite status. Omit to keep current. |