OpenClaw Quickstart

Connect OpenClaw to Brainfork in three steps.

Install the Brainfork memory plugin, point it at your Brainfork endpoint, and let OpenClaw recall and sync knowledge through Brainfork’s MCP surface.

Install

openclaw plugins install @brainfork/brainfork-openclaw

1. Create a Brainfork account and start the 14-day trial.

2. Create or select a Brainfork server, then generate a token from the dashboard token lane.

3. Replace the placeholders below and set the Brainfork plugin as your OpenClaw memory slot.

Config

plugins:
  slots:
    memory: brainfork-openclaw
  entries:
    brainfork-openclaw:
      config:
        baseUrl: https://api.brainfork.is
        endpoint: your-server-endpoint
        apiKey: bf_live_...
        autoRecall: true
        autoIndex: true
        captureDecisions: true
        maxResults: 6
        maxTokens: 1400
        deleteMode: archive

`endpoint` is your Brainfork server endpoint. `apiKey` is the Brainfork token you generated in the dashboard. With `autoRecall` and `autoIndex` enabled, the plugin will inject relevant memories before runs and sync `MEMORY.md` plus `memory/**/*.md` after runs.

Recall

The plugin queries Brainfork before the agent starts and prepends a bounded <brainfork_memories> block with the most relevant context.

Sync

Brainfork stores synced memory documents by stable external ID and content hash, so unchanged files stay untouched and deleted files can be archived or removed deterministically.

Decisions

When `captureDecisions` is enabled, durable decisions are logged into Brainfork so they can be searched and recalled later over MCP.

Need a Brainfork server first?

Start the trial, create a server, generate a token, and return here to finish the OpenClaw setup.