agent_remember
Record key-value notes in encrypted agent memory that persist across sessions. Use to store deployment preferences, rotation dates, or decisions from earlier sessions.
Instructions
[agent] Persist a non-secret key/value note in encrypted, on-disk agent memory that survives across MCP sessions. Use to record stable agent context — last rotation date for a key, the user's deployment preferences, decisions taken in earlier sessions; do NOT use this to store secrets (use set_secret instead) and prefer chat scratchpad for purely transient state. Mutates the encrypted memory store. Idempotent: rewriting the same key with a new value simply overwrites. Returns 'Remembered "KEY"' on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Memory key (free-form string). Convention: lowercase dotted namespaces, e.g. 'project.lastDeploy'. | |
| value | Yes | Plain-string value to store. JSON-stringify structured data on the caller side if needed. |