crbro-memory
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@crbro-memoryRemember that I prefer dark mode in all my projects."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π§ CRBRO β Persistent Neural Memory for AI
CRBRO is a local MCP (Model Context Protocol) server that gives your AI assistant persistent long-term memory across sessions. It uses a biological neural architecture β cortex, synapses, hippocampus β to store, connect, and retrieve knowledge automatically.

Free and open source (MIT). All 15 tools included β no license, no account, no tiers.
β If CRBRO gives your AI a memory worth keeping, a star on GitHub is the best way to support it.
Features
𧬠Biological Architecture β Knowledge organized as neurons (cortex), connections (synapses), and session memory (hippocampus)
π Hybrid Search β Powered by Orama for fast BM25 + fuzzy text search
π₯ Heat Scores β Automatic relevance tracking based on frequency, recency, and connectivity
πΊοΈ Global Map β Cluster detection and cross-domain bridge identification
βοΈ Knowledge Miner β Optionally scans your local
.md/.txtnotes and feeds them into the brainπ Fully Local β Runs on Node.js alone: no Python, no Docker, no databases, no external services. Your memory never leaves your machine
πΎ File-Based β All data stored as readable JSON files in
~/.crbro/β inspectable, diffable, and versionable with gitπ MCP Native β Works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible client
Related MCP server: cell-mem
Quick Start
1. Initialize
npx crbro-memory init2. Add to your MCP config
Register CRBRO at the user level, not per-project. Your brain lives in
~/.crbro/and is shared across every folder β but if you register the server inside a single project, other folders won't have the tools and it will look like the memory is gone. User-level registration makes it available everywhere, which is the whole point.
Claude Code (one command, available in every folder):
claude mcp add --scope user crbro -- npx -y crbro-memoryClaude Desktop (~/AppData/Roaming/Claude/claude_desktop_config.json):
{
"mcpServers": {
"crbro": {
"command": "npx",
"args": ["-y", "crbro-memory"]
}
}
}Cursor (~/.cursor/mcp.json β the one in your home folder, not a project's .cursor/):
{
"mcpServers": {
"crbro": {
"command": "npx",
"args": ["-y", "crbro-memory"]
}
}
}3. Start using it
Your AI will now have access to 15 memory tools. Start any session with crbro_boot.
Tools
Tool | Description |
| Boot the brain at session start β loads hot topics and context |
| Brain status β neurons, synapses, sessions count |
| Store a fact, decision, pattern, or preference |
| Read a specific neuron (topic) with all its knowledge |
| List neurons with optional filters (domain, type, heat) |
| Search the brain using hybrid text search |
| Create or strengthen a connection between neurons |
| Get all connections for a neuron |
| Log a session summary |
| List recent sessions |
| Read/update active working context |
| Get the most active topics by heat score |
| View the neural network β clusters and cross-domain bridges |
| Full brain maintenance β archive, prune, rebuild |
| End-of-session consolidation |
Architecture
~/.crbro/
βββ manifest.json β Brain metadata
βββ cortex/ β One JSON per neuron (topic)
β βββ project_octochat.json
β βββ tech_firebase.json
βββ synapses/ β One JSON per connection
β βββ syn_octochat__firebase.json
βββ hippocampus/ β One JSON per session
β βββ session_2026-05-06.json
βββ prefrontal/ β Working memory
β βββ active_context.json
β βββ hot_topics.json
β βββ global_map.json
βββ archives/ β Cold neurons
βββ .search/ β Orama search index
βββ orama.index.jsonHeat Score Algorithm
Each neuron has a heat score (0.0 - 1.0) calculated from:
Frequency (35%) β How often the neuron is accessed
Recency (40%) β When it was last accessed (today = 1.0, >3 months = 0.05)
Connectivity (25%) β How many synapses connect to it
Knowledge Miner
The miner is an optional, fully local helper that scans a directory for .md and .txt files (notes, docs, journals) and extracts knowledge into the brain β so CRBRO can learn from what you already wrote, not just from conversations. It never touches the network and never leaves your machine.
npx crbro-memory mine [dir] # One-shot scan of a directory
npx crbro-memory setup-miner # Install a scheduled auto-scan (OS task scheduler)
npx crbro-memory miner-status # Check the auto-miner status
npx crbro-memory remove-miner # Remove the scheduled taskNaming note: "miner" here means knowledge mining β extracting facts from your own text files. Nothing to do with cryptocurrency.
CLI Commands
npx crbro-memory # Start MCP server (stdio)
npx crbro-memory init # Initialize brain + detect IDEs
npx crbro-memory status # Show brain status
npx crbro-memory --help # HelpLicense
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceA local MCP server that gives AI assistants a long-term memory by capturing sessions verbatim and surfacing relevant context automatically.15500MIT
- Alicense-qualityBmaintenanceAn MCP server that provides AI agents with persistent, multi-layered memory inspired by the human brain, including consolidation, self-reflection, and generative replay.1MIT
- Flicense-qualityDmaintenanceAn advanced MCP server that gives AI assistants persistent memory with machine-learning-powered semantic understanding, enabling branching memory, semantic search, and project analysis.
- Alicense-qualityDmaintenanceA local MCP server that gives AI coding agents persistent memory and context across sessions.9MIT
Related MCP Connectors
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Cloud-hosted MCP server for durable AI memory
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Octonove/crbro-memory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server