Back to Browse

Crbro Memory MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Persistent file-based memory for AI agents: inspectable, versionable, fully local.

About

Persistent file-based memory for AI agents: inspectable, versionable, fully local.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

4 files analyzed Β· 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-octonove-crbro-memory": {
      "args": [
        "-y",
        "crbro-memory"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

🧠 CRBRO β€” Persistent Neural Memory for AI

npm license MCP

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.

CRBRO demo

Free and open source (MIT). All 16 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)
  • πŸ” Fact-Level Search β€” Powered by Orama. Every fact is indexed on its own, so a topic with hundreds of facts stays as findable as one with three, and each result comes back with the exact fact that matched and the date it was recorded
  • πŸ”₯ Heat Scores β€” Automatic relevance tracking based on frequency, recency, and connectivity
  • ✏️ Correctable β€” Knowledge can be superseded or retracted, not just piled up. A memory that only appends keeps serving yesterday's answer with today's confidence
  • πŸ—ΊοΈ Global Map β€” Cluster detection and cross-domain bridge identification
  • ⛏️ Knowledge Miner β€” Optionally scans your local .md/.txt notes 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

Quick Start

1. Initialize

npx crbro-memory init

2. 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-memory

Claude 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 16 memory tools. Start any session with crbro_boot.

Tools

ToolDescription
crbro_bootBoot the brain at session start β€” loads hot topics and context
crbro_statusBrain status β€” neurons, synapses, sessions count
crbro_learnStore a fact, decision, pattern, or preference
crbro_neuronRead a specific neuron (topic) with all its knowledge
crbro_neuronsList neurons with optional filters (domain, type, heat)
crbro_recallSearch every stored fact, not just topic names β€” returns the fact that matched
crbro_connectCreate or strengthen a connection between neurons
crbro_connectionsGet all connections for a neuron
crbro_session_logLog a session summary
crbro_sessionsList recent sessions
crbro_contextRead/update active working context
crbro_hot_topicsGet the most active topics by heat score
crbro_global_mapView the neural network β€” clusters and cross-domain bridges
crbro_reviseMark facts as superseded or retracted when they stop being true
crbro_maintenanceBrain maintenance β€” heat, pruning, integrity, index rebuild
crbro_consolidateEnd-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 (opt-in; nothing is archived unless you ask)
└── .search/                ← Orama search index
    └── chunks.index.json   ← one document per fact

Heat 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 task

Naming 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 reindex  # Rebuild the search index
npx crbro-memory eval     # Measure retrieval quality against your own query set
npx crbro-memory --help   # Help

Measuring retrieval

eval is there so you can tell a fix from a feeling. Write ~/.crbro/.eval/queries.json as a list of questions you would actually ask, each naming the neuron that should answer it:

[
  { "query": "how we deploy the api",
    "expect_neuron": "project_octochat",
    "expect_contains": "Cloud Run" }
]

Then npx crbro-memory eval reports how often the right neuron comes back first, how often it makes the top three, and MRR β€” plus every miss, so you can see what it got wrong instead of guessing.

License

MIT β€” see LICENSE. Built by Octonove.

Reviews

No reviews yet

Be the first to review this server!