memory_write
Write persistent key-value memory for AI agents, scoped to the paying wallet. Supports optional TTL for auto-expiration or deletion.
Instructions
[$0.002/call, wallet required] Persistent key-value memory for agents, scoped to the paying wallet. Your x402 payment IS your authentication: the wallet that pays owns the namespace. No signup, no API keys. Body: {"key":"…","value":any JSON,"ttlSeconds":3600?} to write (optional TTL), or {"key":"…","delete":true} to remove. Add "owner":"0x…" to write into another wallet's namespace you've been granted. Values up to 64KB.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Key to write (max 256 chars) | |
| owner | No | Optional 0x namespace to write into (requires a readwrite grant) | |
| value | No | Any JSON value (max 64KB serialized) | |
| delete | No | Set true to delete the key instead | |
| ttlSeconds | No | Optional: auto-expire the key after N seconds |