Claude Brain MCP Server

A biologically-inspired persistent memory system for LLMs, modeled on neuroplasticity, consolidation, and sleep.

Local serverstdioPython

What is the Claude Brain MCP server?

A biologically-inspired persistent memory system for LLMs, modeled on neuroplasticity, consolidation, and sleep. The claude brain mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Its toolset

Everything the assistant can do here goes through one of these:

  • memory_store — Ingest conversation text — extracts concepts and relationships via Claude
  • memory_retrieve — Query the graph — returns formatted context with inline connections
  • memory_dream — Run a full dream cycle (NREM + REM + waking + threat)
  • memory_dream_report — Human-readable narrative of the last dream cycle
  • memory_goals — Manage research goals — add, list, or remove
  • memory_status — Graph statistics (node/edge counts, score distributions)
  • memory_stats_detailed — Detailed appraisal breakdown per node, top edges, contradictions, dream edges
  • memory_tune — Adjust parameters at runtime (e.g. dream.rem_jump_probability)

Configuration

You will need 2 environment variables: PYTHONPATH, ANTHROPIC_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the claude brain mcp server does with a few real requests.

When to reach for it

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Claude Brain's toolset — memory_store, memory_retrieve, memory_dream and 5 more — is a fair guide to whether it matches your workflow. It is maintained by gammon-bio; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Claude Brain's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
memory_storeIngest conversation text — extracts concepts and relationships via Claude
memory_retrieveQuery the graph — returns formatted context with inline connections
memory_dreamRun a full dream cycle (NREM + REM + waking + threat)
memory_dream_reportHuman-readable narrative of the last dream cycle
memory_goalsManage research goals — add, list, or remove
memory_statusGraph statistics (node/edge counts, score distributions)
memory_stats_detailedDetailed appraisal breakdown per node, top edges, contradictions, dream edges
memory_tuneAdjust parameters at runtime (e.g. dream.rem_jump_probability)

How to install the Claude Brain MCP server

{
  "mcpServers": {
    "neuroplastic-memory": {
      "command": "/absolute/path/to/mind/.venv/bin/python",
      "args": ["-m", "mind"],
      "cwd": "/absolute/path/to/mind",
      "env": {
        "PYTHONPATH": "/absolute/path/to/mind/src"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PYTHONPATHFilesystem location the server is allowed to use.Optional
ANTHROPIC_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Claude Brain to memory store.
  • Use Claude Brain to memory retrieve.
  • Use Claude Brain to memory dream.

Frequently asked questions

It connects Claude Brain to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (memory_store, memory_retrieve, memory_dream, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Claude Brain directly.