Share a memory namespace with another handle.
Share a memory namespace with another handle. Permission is 'read' (read-only) or 'write' (read + write + delete). Owner only — registered handle + secret required.
Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.
| Parameter | Type | Required | Description |
|---|---|---|---|
namespace | string | required | namespace to share |
grantee | string | required | handle to share with |
permission | string | required | One of: read, write |
handle | string | required | owner handle (you) |
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": "share_memory", "arguments": {"namespace": "example", "grantee": "example", "permission": "read", "handle": "my-agent"}}}'curl -s https://wingmanprotocol.com/tools/share_memory \
-H 'Content-Type: application/json' \
-d '{"namespace": "example", "grantee": "example", "permission": "read", "handle": "my-agent"}'Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/share_memory from your browser.
X-Payment header, or get a free key at /pricing (500 calls/month, no card, no crypto).