remember
Save a new note to an agent's memory and return the memory ID. Use pinned to protect important notes from automatic eviction when the memory cap is reached.
Instructions
Save a new note to this agent's memory. Returns the new memory's id. Always inserts - calling this twice with the same text creates two separate memories, since this server doesn't have deduplication enabled by default.
If the server was configured with a memory cap (max_memories), the oldest unpinned memory may be evicted to make room for this one. pinned=True exempts a memory from that eviction permanently - there's no way to un-pin it later through this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The note to remember, in plain text. | |
| pinned | No | If true, exempt this memory from automatic eviction under max_memories, even once it's no longer among the most recent. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |