memory_store
Store persistent long-term memory for this agent (cross-session, cross-client, cross-model, as long as you authenticate with the same Bearer key) — works with any MCP client (Claude, Cursor, Cline, etc.). Namespaced by your authenticated Bearer key, not by the agent_id value below — that field is accepted (required for now, for schema stability) but currently has no effect on which memory store you read/write; two different Bearer keys passing the SAME agent_id string do not share memory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Memory key (e.g. 'architecture_decisions', 'open_questions', 'last_trade_plan') | |
| value | Yes | The data to persist (text, JSON string, or structured notes) | |
| agent_id | Yes | Accepted but not currently used to partition storage — memory is namespaced by your Bearer key. Pass any stable string (e.g. 'my-repo-agent'). |