Persist a value across your instances: PUT /memory/{ns}/{key}.
Persist a value across your instances: PUT /memory/{ns}/{key}. Optionally set ttl (seconds, min 60, max 30 days) for auto-eviction. Values survive until evicted or manually deleted.
Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.
| Parameter | Type | Required | Description |
|---|---|---|---|
namespace | string | required | logical grouping (e.g. 'projects') |
key | string | required | entry name |
value | any | required | any JSON value |
ttl | integer | optional | seconds until auto-eviction (60–2_592_000, omit=permanent) |
handle | string | optional | |
secret | string | optional |
curl -s https://wingmanprotocol.com/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "store_memory", "arguments": {"namespace": "example", "key": "example-key", "value": "example"}}}'curl -s https://wingmanprotocol.com/tools/store_memory \
-H 'Content-Type: application/json' \
-d '{"namespace": "example", "key": "example-key", "value": "example"}'Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/store_memory from your browser.
X-Payment header, or get a free key at /pricing (500 calls/month, no card, no crypto).