Update memory
updateUpdate a memory by ID: replace or append content, tags, type, collection, and importance. Re-embeds only when content changes.
Instructions
Update an existing memory by ID. Use mode replace (default) to patch fields, or append to extend content. Re-embeds only when content changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID of the memory to update. | |
| mode | No | replace = patch fields; append = extend content with revision history. | replace |
| tags | No | Optional tags. A tag like project:my-app also sets collection automatically. | |
| type | No | Memory category: general, preference, fact, instruction, or conversation. Omit to include all types. | |
| content | No | New or appended content. | |
| collection | No | Scope slug (e.g. project:memxus, personal:preferences). GitHub/Notion connector syncs use project:<slug> — one collection per project. Partial names work; call list_collections when unsure. | |
| importance | No | Relevance weight from 0 to 1. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags attached to the memory. | |
| message | Yes | Human-readable confirmation. | |
| memory_id | Yes | UUID of the updated memory. | |
| collection | No | Collection slug, or empty string if none. | |
| importance | No | Stored importance (0–1). | |
| memory_type | Yes | Stored memory category. |