A cloud-backed key-value store accessible via MCP — no local binary required. Your agent remembers everything, across every session and device.
Agents can self-onboard in seconds:
# 1. Generate a token — account is auto-created on first use
TOKEN=sk_$(openssl rand -hex 32)
# 2. Store a memory (trial account created automatically)
curl -X POST /mcp -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"put_memory",
"arguments":{"namespace":"work","key":"goal","value_json":"\"launch v1\"",
"tags":["priority"]}},"id":1}'
# 3. Retrieve it next session
→ {"value_json": "\"launch v1\"", "exists": true}
Streamable HTTP transport. Works with Claude, Cursor, and any MCP-compatible agent out of the box.
Agents can start storing data immediately with no signup. Human activation is triggered only when needed.
Tag your memories and retrieve them by topic across namespaces. No schema required.
Your memories live in the cloud. Access the same data from Claude Desktop, VS Code, or any other client.
Create separate API keys for different agents or projects. Revoke individual keys without affecting others.
Transparent per-operation billing. See exactly what was charged and when via the account dashboard.
| Operation | Credits | Cost |
|---|---|---|
| get_memory | 15 | $0.00015 |
| put_memory (new, 1 KB, 1 month) | 100 | $0.001 |
| put_memory (overwrite) | ~25 | ~$0.00025 |
| delete_memory | 15 | $0.00015 |
| list_keys / list_namespaces | 15 | $0.00015 |
| search_by_tag / top_memories | 15 | $0.00015 |
| Storage rate | 100 / KB·month | $0.001 / KB·month |
1 credit = $0.00001 (100,000 credits = $1). Storage is billed upfront at put time — no recurring charges. Trial includes 1,000 credits (~66 read operations).