OpenMemBrain
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, resolves conflicts, and persists only what matters.
OpenMemBrain
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, resolves conflicts, and persists only what matters.
No manual effort. No data leaves your machine unless you choose it. Safe, private, and trustworthy by design.
- Zero-effort — learns from sessions automatically, no commands or prompts needed
- Secure by default — secrets are detected and rejected before they ever reach storage
- Self-managing — deduplicates, resolves conflicts, and filters noise on its own
- Local-first — all memory stays on your machine; optional EU/CH-hosted cloud sync
- Tool-agnostic — works with any AI coding tool via MCP (Claude, Copilot, Cursor, OpenCode, and more)
Installation
Install and run the MCP server with npx (requires Node.js >= 18):
npx openmembrain
Or install globally:
npm install -g openmembrain
openmembrain
No cloud accounts required. All memory is stored locally.
Configuring Your AI Tool
OpenMemBrain runs as an MCP server over stdio. Add it to your AI tool's MCP configuration:
Claude Desktop
Edit claude_desktop_config.json:
{
"mcpServers": {
"openmembrain": {
"command": "npx",
"args": ["openmembrain"]
}
}
}
Claude Code
claude mcp add openmembrain -- npx openmembrain
VS Code / GitHub Copilot
Add to .vscode/mcp.json in your project:
{
"servers": {
"openmembrain": {
"command": "npx",
"args": ["openmembrain"]
}
}
}
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"openmembrain": {
"command": "npx",
"args": ["openmembrain"]
}
}
}
OpenCode
Automated (recommended): Tell OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/mohamadalhusseinie/openmembrain/refs/heads/main/.opencode/INSTALL.md
Manual: Add to ~/.config/opencode/opencode.json:
{
"mcp": {
"openmembrain": {
"type": "local",
"command": ["npx", "-y", "openmembrain"]
}
}
}
Automatic Memory Capture
Adding the MCP server gives your AI tool access to OpenMemBrain's tools. To ensure the AI uses them automatically — loading project memory at session start and saving durable knowledge as it's discovered — add a global instruction file.
Create ~/.config/openmembrain/instructions.md with instructions for the AI to:
- Call
get_project_rules,get_relevant_context, andlist_memory_candidatesat the start of each session. - Call
propose_memory_from_sessionproactively when durable knowledge is discovered, using prefixes likerule:,architecture:,gotcha:,testing:,security:,forbidden:,remember:,domain:to mark durable knowledge.
Then wire the file into your tool's global configuration:
| Platform | Global instruction mechanism |
|---|---|
| OpenCode | "instructions": ["~/.config/openmembrain/instructions.md"] in ~/.config/opencode/opencode.json |
| Claude Code | Append to ~/.claude/CLAUDE.md |
| Cursor | Add to Rules for AI in Cursor Settings |
| VS Code / Copilot | Create ~/.copilot/instructions/openmembrain.instructions.md with applyTo: "**" |
See the platform-specific setup guides in docs/setup/ for
detailed instructions.
Alternatively, run export_static_memory_files in any project to generate
per-project instruction files (AGENTS.md, CLAUDE.md, etc.) that include both
usage instructions and stored memories.
Environment Variables
By default, local memory is stored in .openmembrain under the current working directory. Override this with:
OPENMEMBRAIN_HOME: directory for local JSON memory stores.OPENMEMBRAIN_PROJECT_ID: default project id when a tool call does not passprojectId.
MCP Tools
propose_memory_from_session— submit a session transcript or summary for memory extraction. Accepts optionalmetadata(key-value pairs) for additional context.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.reject_memory_candidate— reject a pending candidate with an optional reason.update_memory— update the content, type, scope, or tags of a saved memory.supersede_memory— mark a memory as superseded, optionally linking a replacement.review_stale_memories— list memories older than a threshold (default: 6 months).export_static_memory_files— generate static instruction files (AGENTS.md, CLAUDE.md, etc.).get_diagnostics— retrieve diagnostic events filtered by severity or code.list_audit_log— retrieve recent audit events.
Architecture
The first implementation is centered on the autonomous memory pipeline, not a CLI workflow.
session transcript or summary
-> SessionIngestor
-> SecretDetector redaction (pre-extraction)
-> MemoryExtractor interface (MockMemoryExtractor for MVP)
-> MemoryClassifier (+ SecretDetector check)
-> PolicyEngine (SecretDetector + SafetyFilter + NoiseFilter)
-> Deduplicator
-> ConflictDetector
-> ActionRecommender
-> MemoryApprovalService (+ SecretDetector safety net)
-> MemoryStore or PendingCandidateStore
Package responsibilities:
packages/core: domain types, extraction interface, policy checks, classification, deduplication, conflict detection, and pipeline orchestration.packages/storage: local JSON persistence for saved memory, pending approvals, and audit events.packages/exporters: static fallback file generation for AI tools that read project instruction files.packages/shared: small runtime helpers for IDs, time, and result types.apps/mcp-server: local MCP server exposing saved memory and approval workflows to AI tools.
Provider-specific LLM calls are intentionally kept out of the core. The boundary is:
interface MemoryExtractor {
extract(input: SessionInput): Promise<MemoryCandidate[]>;
}
The MVP ships with MockMemoryExtractor so the pipeline can be tested deterministically before adding OpenAI, Anthropic, or local model extractors.
Diagnostics And Errors
OpenMemBrain distinguishes audit history from diagnostics:
- Audit events describe normal memory activity, such as session ingestion, candidate extraction, saved memory, queued candidates, and rejected candidates.
- Diagnostics describe operational problems, such as validation errors, missing candidates, invalid local JSON stores, unsafe approval attempts, and export failures.
MCP tools return safe user-facing error payloads with a diagnosticId. The detailed diagnostic can be inspected through get_diagnostics without exposing raw transcripts or secrets.
Static Fallback Files
Static exporters can generate:
AGENTS.mdCLAUDE.md.github/copilot-instructions.md.cursor/rules/openmembrain.mdcdocs/ai/project-memory.md
These files are compatibility fallbacks for tools that cannot retrieve memory through MCP. By default, exporters omit confidential memories because these files may be committed to source control. Callers must explicitly opt in to include confidential memory.
Development
git clone https://github.com/mohamadalhusseinie/openmembrain.git
cd openmembrain
npm install
Run the MCP server locally (from source via tsx):
npm run mcp:stdio
Run tests and type checking:
npm test # vitest
npm run typecheck # tsc --noEmit
npm run check # both
Build the publishable bundle:
npm run build
Documentation
- Architecture — pipeline design, type schemas, MCP tool surface, package dependencies
- Security and Privacy — secret handling, data storage rules, LLM usage policy
- Product Vision — product thesis, UX workflow, memory quality criteria
- Roadmap — phased delivery plan from local MVP to hosted mode
- Contributing — setup, development workflow, PR guidelines
相關伺服器
NOUZ MCP Server
Local-first MCP server that turns Obsidian and Markdown knowledge bases into an agent-readable graph
MemHeaven
Self-hosted remote MCP memory server for ChatGPT and AI agents.
Recall
Open-source MCP memory server for AI coding agents — durable cross-session memory, per-agent namespaces, ChromaDB-backed, self-hosted.
Cosmos
your ai exocortex
MemPalace Cloud
Hosted MCP memory across Claude Code, Cursor, ChatGPT and any MCP client. Community-hosted instance of the MIT-licensed MemPalace engine. EU-hosted, GDPR-compliant. Free tier with 200 memories.
Vilix
Persistent memory for AI assistants and coding agents across ChatGPT, Claude, Cursor, and other MCP-compatible tools.
mem0-mcp-server
mem0-mcp-server — exposes Mem0 persistent semantic memory as an MCP HTTP server; supports add/search/read/update/delete operations and semantic search for agent memory.
Adaptive Recall
Adaptive MCP memory system for AI applications. Learns which retrieval strategies work for your data, scores results using cognitive science models, builds a knowledge graph automatically, and validates every parameter change against real query history before adopting it. Patent pending.
Memento
A local-first, LLM-agnostic memory layer for AI assistants
LAIN-mcp
Rust MCP server that gives AI coding agents architectural awareness — persistent knowledge graph, blast radius analysis, co-change detection via git, and local semantic search. No API keys, runs entirely on-premise.