Skip to content

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#

ParameterTypeRequiredDescription
noteIdstring (UUID)requiredThe note ID to update
titlestring (max 1000 chars)optionalNew title
contentstring (max 1,000,000 chars)optionalNew content (plain text or HTML)
tagsstring[] (max 50 tags, each max 100 chars)optionalNew 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"]
  }
}