Self-hosted shared memory for a team of AI agents. Rooms, L0-L3 depth, no LLM on the read path.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by RCLL.
memory_retainSave a memory with automatic room/hall classification
memory_recallScoped semantic search with room/hall/layer filters
memory_reflectDeep reasoning β synthesize facts, find patterns, answer with citations
memory_compressCreate closet summaries from accumulated facts
memory_bridgeCross-bank tunnels between related memories
Self-hosted shared memory for a team of AI agents. Storage + structure in one system.
RCLL β team memory for agent fleets. Built on Hindsight (github.com/vectorize-io/hindsight, MIT).
[!IMPORTANT] You are looking at a read-only mirror. The canonical repository is
godcrm.ai/git/holetron-lab/fleet-memoryβ self-hosted, public, clonable anonymously with no account anywhere in the chain. Everything here is pushed out from there, so a merge performed on GitHub is overwritten by the next sync, usually within the hour. Issues and stars belong here and are read. A pull request is welcome here as well β it gets merged on the canonical side and arrives back here on the next sync.
RCLL is a fork of vectorize-io/hindsight (MIT). It keeps Hindsight's storage engine and adds rooms β topic scoping over one shared store, which is selectivity rather than isolation β plus a hierarchical depth model (L0βL3). The room/hall/layer taxonomy is prior art in the hierarchical-memory space; the implementation here is our own.
RCLL is recall with the vowels dropped β the one operation every agent in the fleet performs before it does anything else. The tool is literally called memory_recall; the product is named after the call.
Its one structural property worth remembering: the read path never invokes a language model. A recall costs CPU and zero model tokens β see architecture.
The source is public and MIT. There is no packaged release yet: fleet-memory-mcp is not published on npm and no container image is pushed. Running RCLL today means building from this tree, which the quick start below does. Don't quote an install command as working until rcll.ai shows one.
| Site, measured numbers | rcll.ai Β· benchmarks |
| Written for an AI agent, not a human | rcll.ai/agents.md |
| Where we branched from upstream, and how to take the next release | FORK.md |
| Architecture spec | RCLL.md |
Rooms β topic isolation. Auth, pipeline, infrastructure, schema β each topic in its own room. An agent searching for auth facts won't wade through 500 deploy memories.
Halls β knowledge typing within a room. Fact, event, decision, procedure, warning. The system knows what it's looking at before reading β like Content-Type for memory.
Layers L0βL3 β four priority tiers. L0 (core) is always loaded. L3 (archive) is deep-search only. Same idea as CPU cache hierarchy: L1 is fast and small, RAM is slow but holds everything.
Closets β AI-compressed summaries with source pointers. Deduplication at the knowledge level: 10 related facts β 1 paragraph + references.
Tunnels β cross-bank bridges between agents. Agent A discovers an insight β Agent B sees it through a tunnel without data duplication.
This is a list of our additions relative to our branch point (d054b884, April 2026) β not a claim about what upstream Hindsight does today. Upstream has shipped roughly 1,700 commits and four minor releases since we branched; assume anything below has an upstream answer we have not evaluated, and read FORK.md before treating this as a comparison.
| Added here | What it is |
|---|---|
| Rooms | Topic scoping on every write and every read β selectivity, not isolation |
| Halls | Knowledge typing within a room (fact, event, decision, procedure, warning) |
| Layers L0βL3 | Durability tiers; L0 always recalled, L3 deep-search only |
| Classification | Keyword-based, sub-millisecond, no LLM call β the taxonomy costs zero tokens |
| Closets | Compressed summaries by room + hall, with pointers back to sources |
| Tunnels | Cross-bank bridges |
| MCP server | Standalone server exposing 5 tools over MCP |
Everything is additive: the upstream /retain and /recall contracts as of our branch point still work unchanged, and every new parameter is optional.
Retrieval quality, our own models on the public LoCoMo dataset, using a third-party harness rather than one we wrote. Full method, the arms that lost, and the caveats: rcll.ai/docs/benchmarks/.
| Configuration | nDCG@10 | vs BM25 |
|---|---|---|
| BM25 | 0.3885 | baseline |
| vector | 0.4244 | +0.036 |
| hybrid fusion | 0.4722 | +0.084 |
| hybrid fusion + reranker (default) | 0.5862 | +0.198 |
This is retrieval quality, not answer accuracy. It is not comparable to figures of the form "77% on LoCoMo", which measure a reader and a judge on top of a store. We publish no accuracy number because we have not run a reader and a judge.
Two results that go against us are on the benchmarks page rather than left out: on multi-hop questions our default fusion is worse than vector-plus-reranker, and on single-hop BM25 alone beats dense retrieval.
Latency on CPU with no GPU: ~0.29 s for search, ~3.0 s including the cross-encoder reranker. The reranker is 85% of the time and the single largest quality gain we can measure.
This builds the image from this tree β there is no published image to pull, so the first run compiles and is not fast. The API then listens on http://localhost:5100.
Clients written against upstream Hindsight's API as of our branch point keep working β the added parameters are optional. It is not a drop-in for current upstream Hindsight, which is several releases ahead of this fork.
Ships with BAAI/bge-small-en-v1.5 (384-dim) β fast, CPU-friendly, baked into the image so first run needs no network download. It's English-optimized; recall quality on other languages degrades.
For multilingual memory (e.g. RU, multi-script), point it at a multilingual model:
Dimension is detected automatically. β οΈ Switching models changes the vector dimension β do it on an empty memory store, or wipe + re-embed, since existing vectors can't be mixed across dimensions.
LLM_PROVIDER=none is a supported configuration, and it is a smaller product rather than the same one for free: retain drops to chunk mode β chunks stored and embedded whole, with no fact extraction, no entity resolution, no causal links, and consolidation and reflection off. You get a hybrid vector-and-lexical chunk store. Reading is unaffected, because reading never calls a model anyway. Choose this deliberately, or point extraction at a local model β don't arrive here by leaving a field blank.
The mcp-server/ directory contains a standalone MCP server over stdio.
What is actually verified, as of 2026-08-24, against a live backend: protocol version
2025-06-18; initialize, tools/list and tools/call all round-trip; memory_recall
returns real results. That is a protocol-level check run directly over stdio β not a
client-by-client compatibility matrix.
Any client that speaks MCP over stdio should therefore work, but we have not sat in front of each one. Listed below is the config we run ourselves (Claude Code) and no others. If you get it working with a different client, a PR to this section is the useful kind.
| Tool | Description |
|---|---|
memory_retain | Save a memory with automatic room/hall classification |
memory_recall | Scoped semantic search with room/hall/layer filters |
memory_reflect | Deep reasoning β synthesize facts, find patterns, answer with citations |
memory_compress | Create closet summaries from accumulated facts |
memory_bridge | Cross-bank tunnels between related memories |
memory_recall is the only one of the five that never calls a model. memory_reflect is an agentic loop with repeated LLM calls β if you expose this server to anything untrusted, expose memory_recall alone.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/rcll)<a href="https://allmcps.com/mcp/rcll"><img src="https://allmcps.com/api/badge/rcll?style=directory" alt="RCLL on AllMCPs" /></a>