update_memo
Update an existing memo by modifying its title, content, or tags. Only specified fields change; omitted fields remain unchanged. Returns the updated memo.
Instructions
Update an existing memo's title, content, and/or tags. Only the fields provided are modified; omitted fields are left unchanged. Note that the tags array (if provided) REPLACES the existing tag set — pass the full desired list, not a delta. Returns the updated memo. Example: {"id":"abc12345","title":"New title"} renames the memo and leaves content/tags untouched. Side effects: idempotent for the same input; only specified fields change. Errors if the id does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | New Markdown body (optional). Replaces the existing body entirely. | |
| id | Yes | UUID of the memo to update. Required. | |
| tags | No | New tag list (optional). Replaces existing tags entirely — pass the full desired list. | |
| title | No | New title (optional). |