Search Documentation
Search across all documentation pages
update_note
Update an existing note's title, content, or tags. All update fields are optional — only provided fields are modified. Content is re-encrypted after update.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| noteId | string (UUID) | required | The note ID to update |
| title | string (max 1000 chars) | optional | New title |
| content | string (max 1,000,000 chars) | optional | New content (plain text or HTML) |
| tags | string[] (max 50 tags, each max 100 chars) | optional | New tags (replaces existing) |
Returns#
Confirmation of the update with the note ID and updated fields.
Example#
json
{
"tool": "update_note",
"arguments": {
"noteId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Updated API Design Guidelines",
"tags": ["api", "guidelines", "engineering", "v2"]
}
}