Connect Your Agent

Follow these steps to give your LLM agents persistent memory with MemClaw.

1

Get Your API Key

Sign up or sign in, then create an API key from the Manage page.

2

Quick Install (OpenClaw)

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.

3

Manual Install

pip install openclaw-memclaw
4

Configure

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: true
5

Verify Connection

Test 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": "..."}
Need help? Read the full API docs or reach out to support.