store_memory
Persist a value across your instances: PUT /memory/{ns}/{key}. Required: namespace + key + value. Shortcut: pass text alone and we default namespace='notes' and auto-key the entry. Optionally set ttl (seconds, min 60, max 30 days) for auto-eviction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | entry name; auto-generated when using text shortcut | |
| ttl | No | seconds until auto-eviction (60–2_592_000, omit=permanent) | |
| text | No | shortcut: store this string as value under notes/<auto-key> | |
| value | No | any JSON value | |
| handle | No | ||
| secret | No | ||
| namespace | No | logical grouping (e.g. 'projects'); default 'notes' when using text shortcut |