remember
Store AI agent knowledge persistently with category, source, confidence, and access control so critical information survives across sessions and remains retrievable.
Instructions
Store a memory for AI agents. Persists information across sessions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The memory content to store | |
| source | No | Where this memory came from (e.g. 'conversation', 'document', 'cron') | |
| category | Yes | Memory category (state-prefixing scope): fact, belief, session, rule, preference, temp. Required for state-prefixing — the server applies 'fact' as a backward-compatible default when the client omits this field. | fact |
| confidence | No | Optional: Confidence score (0.0-1.0) attached to the provenance. Use 0.9+ for verified facts, 0.5-0.8 for beliefs/inferences, <0.5 for speculative notes. The server applies a sensible default (0.7) when omitted. | |
| source_url | No | Recommended: URL or origin reference for provenance tracking. When set, the server activates Justification-Check (Rung 2) on recall: the URL is checked via async HTTP HEAD and the result is returned as `verification` (`verified`, `unreachable`). Optional — omit to skip verification (the memory will be returned with `verification: "unchecked"` on recall). | |
| access_level | No | Who can see this: public (all agents), trusted (approved agents), private (only owner) | public |
| effective_from | No | Optional ISO-8601 date/datetime: when this fact became valid (temporal validity). Defaults to now. Use for retro-dated imports (e.g. mail import with the original mail date). |