OpenMemBrain MCP Server

OpenMemBrain is the intelligent membrane for AI coding memory. It autonomously reads and learns from your coding sessions — you never have to tell it

Remote serverstreamable-httpGo

What is the OpenMemBrain MCP server?

OpenMemBrain is the intelligent membrane for AI coding memory. It autonomously reads and learns from your coding sessions — you never have to tell it what to save. It selectively absorbs project knowledge, blocks secrets, filters noise. Exposed over MCP by the openmembrain mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

Its toolset

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

  • remember — save structured memory directly. Provide content, type, and optional scope/tags. No API key needed. Supports single and batch mode
  • propose_memory_from_session — submit a session transcript or summary for server-side LLM extraction. Requires a configured extractor. Useful for automation adapters
  • get_project_rules — retrieve project rules and conventions for the current scope
  • get_relevant_context — find memories relevant to a natural language query
  • search_memory — search saved memories by query, scope, type, or tags
  • list_memory_candidates — list pending memory candidates awaiting approval
  • approve_memory_candidate — approve a pending candidate to save it as memory
  • approve_all_candidates — approve all pending candidates at once
  • reject_memory_candidate — reject a pending candidate with an optional reason
  • reject_all_candidates — reject all pending candidates at once
  • update_memory — update the content, type, scope, or tags of a saved memory
  • supersede_memory — mark a memory as superseded, optionally linking a replacement

Configuration

You will need one environment variable: OPENMEMBRANE_PROJECT_ID. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. OpenMemBrain's toolset — remember, propose_memory_from_session, get_project_rules and 11 more — is a fair guide to whether it matches your workflow.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch OpenMemBrain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the openmembrain mcp server does with a few real requests.

Available tools

ToolWhat it does
remembersave structured memory directly. Provide content, type, and optional scope/tags. No API key needed. Supports single and batch mode.
propose_memory_from_sessionsubmit a session transcript or summary for server-side LLM extraction. Requires a configured extractor. Useful for automation adapters.
get_project_rulesretrieve project rules and conventions for the current scope.
get_relevant_contextfind memories relevant to a natural language query.
search_memorysearch saved memories by query, scope, type, or tags.
list_memory_candidateslist pending memory candidates awaiting approval.
approve_memory_candidateapprove a pending candidate to save it as memory.
approve_all_candidatesapprove all pending candidates at once.
reject_memory_candidatereject a pending candidate with an optional reason.
reject_all_candidatesreject all pending candidates at once.
update_memoryupdate the content, type, scope, or tags of a saved memory.
supersede_memorymark a memory as superseded, optionally linking a replacement.
review_stale_memorieslist memories older than a threshold (default: 6 months).
export_static_memory_filesgenerate static instruction files (AGENTS.md, CLAUDE.md, etc.).

How to install the OpenMemBrain MCP server

{
  "mcpServers": {
    "openmembrane": {
      "command": "npx",
      "args": ["openmembrane"]
    }
  }
}

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

Configuration

VariableDescriptionRequired
OPENMEMBRANE_PROJECT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use OpenMemBrain to remember.
  • Use OpenMemBrain to propose memory from session.
  • Use OpenMemBrain to get project rules.

Frequently asked questions

It connects OpenMemBrain to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (remember, propose_memory_from_session, get_project_rules, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with OpenMemBrain directly.