Follow these steps to give your LLM agents persistent memory with MemClaw.
Sign up or sign in, then create an API key from the Manage page.
Run this one-liner on the OpenClaw gateway machine to install the MemClaw plugin:
curl -s "https://memclaw.net/api/install-plugin?api_key=YOUR_API_KEY&fleet_id=YOUR_FLEET_ID" \ | bash
This downloads, builds, and configures the plugin automatically. Replace YOUR_API_KEY and YOUR_FLEET_ID with your values.
pip install openclaw-memclaw
Add your MemClaw credentials to your agent configuration:
# openclaw_config.yaml
plugins:
memclaw:
endpoint: https://memclaw.net
api_key: YOUR_API_KEY
tenant_id: YOUR_TENANT_ID
auto_recall: true
auto_write: trueTest that your agent can reach MemClaw:
curl -H "X-API-Key: YOUR_API_KEY" \
"https://memclaw.net/api/status?tenant_id=YOUR_TENANT_ID"
# Expected response:
# {"status": "ok", "version": "1.x.x", "tenant_id": "..."}