Cross-session memory and hybrid RAG over your notes and docs. Local-first, with cited answers.
io.github.IvenKooLab/loci MCP Server
This MCP server provides cross-session memory and hybrid RAG over a userโs notes and documentation. It is local-first and returns answers with citations. It is positioned for personal knowledge-base workflows, including retrieval and incremental indexing across sessions, while supporting memory management and agent-oriented usage.
Two thousand years ago, orators stored their speeches in the rooms of a
palace and walked through them to remember. loci does the same for your
files.
Loci is the method behind every memory palace: place knowledge in
locations, recall it by walking the path.
loci demo
A queryable "second brain" for the project docs, notes, and chat logs scattered
across a dozen directories โ and an MCP server so your AI agents can use it too.
Local files โ heading-aware chunking โ embeddings โ hybrid retrieval (vector +
BM25) โ LLM answer with section-level citations. The index lives entirely on
your machine; only embedding/chat calls go out, to any OpenAI-compatible API
(Zhipu / DeepSeek / Kimi / OpenAI / โฆ).
The thesis (from studying the 90k-star platforms and the graveyard of
dead lightweight tools โ see
our competitive landscape study):
don't build another chat app. Build the memory layer that every chat app
can mount. Claude Desktop, Cursor, Cline, or any MCP host becomes this
project's UI, for free.
Demo
Real session, indexed against the docs of
minimax-h3-turing
(paths shortened for display):
code
$ python main.py search "what the 22G card can and cannot do" -k 3
[1] minimax-h3-turing/docs/en/01-hardware-limits.md > 01 ยท What a 2080Ti 22G Can and Cannot Do (similarity 0.562)
[2] minimax-h3-turing/docs/en/02-w4a8-vs-w4a4.md > 02 ยท Quantization Measured > You Can Try Without 22G (similarity 0.446)
[3] minimax-h3-turing/docs/en/01-hardware-limits.md > ... > 3. VRAM is just barely enough โ manage it (similarity 0.504)
$ python main.py ask "How should I choose between T8 aggressive mode and the final-render mode, and why?"
Answer:
* Drafts / preview / shot selection: use T8 aggressive mode โ a 43% speedup
(2.7 min/clip), and "a different picture of equal quality" is fine for picking shots.
* Final shots: use final-render mode (no T8). T8 makes the numerical trajectory
fork, so re-running with the same seed produces a different clip โ which breaks
the reproducibility final outputs need.
[source: docs/en/08-t8-blockcache-4step.md > Practical Advice (4-step Turbo route)]
[source: docs/en/06-faq.md > 12. Cache-style accelerators break "same-seed re-runs"]
Hybrid retrieval means a Chinese query still finds the English doc (and vice
versa) โ keyword evidence (BM25) catches what embeddings miss, and every
citation points at a section, not just a file.
Does hybrid actually help? (mini-eval, 10 bilingual queries)
Hybrid also fixed the #1 ranking on keyword-ish queries (e.g. "T8 block cache
threshold speedup": vector put an FAQ first, hybrid puts the actual T8
writeup first). Run it against your own corpus with your own cases file.
Reranking: two providers
--rerank reorders the fused candidates for precision:
Provider
How
Cost
llm (default)
pointwise 0โ3 relevance scoring by your chat model
The local model downloads on first use (~1.1 GB; set HF_ENDPOINT=https://hf-mirror.com
if HuggingFace is slow in your region). Measured on a 2080 Ti, bilingual query.
Office documents, PDF tables, web pages, org files, chat logs
PDFs: with the [pdf] extra, PyMuPDF4LLM extracts pages as markdown โ
tables come through as pipe rows (plain pypdf text is the fallback)
Word: with the [docx] extra, .docx paragraphs and table rows are indexed
HTML: .html / .htm pages become text with headings preserved (stdlib
html.parser, zero dependencies โ <meta charset> honored, script/style skipped)
org-mode: .org notes convert faithfully โ #+TITLE becomes the h1 with
*-sections nested under it, #+FILETAGS become searchable tags
Chat exports: drop a ChatGPT or Claude conversations.json into any
source directory โ it becomes one searchable document per conversation,
tagged chatlog (search --tag chatlog scopes to chat history)
How it relates to Obsidian / your note app
It doesn't compete โ the two layer up. Obsidian (or any editor) is the
note-taking frontend; this is the cross-vault search engine: point
sources at any directories (Obsidian vaults, project docs, chat exports)
and query all of them at once โ from your terminal, your scripts, or your AI
agent via MCP. Obsidian-native details are understood: frontmatter tags:
(filter with search --tag), [[wikilinks]] (walk the graph with links),
code blocks are never cut mid-block, and one-line notes stay searchable.
How it works
%%{init: {'theme':'base','themeVariables':{'background':'#000000','primaryColor':'#000000','primaryTextColor':'#00FF41','primaryBorderColor':'#00FF41','lineColor':'#00FF41','secondaryColor':'#001a00','tertiaryColor':'#000000','clusterBkg':'#000000','clusterBorder':'#00FF41','edgeLabelBackground':'#000000','fontSize':'14px','fontFamily':'trebuchet ms, verdana, arial, sans-serif'},'themeCSS':'.nodeLabel { color: #00FF41 !important; } .edgeLabel { background: #000 !important; color: #00FF41 !important; } .cluster-label { color: #00FF41 !important; }'}}%%
flowchart LR
subgraph sources["๐ฅ Your machine"]
notes["Obsidian / markdown notes"]
docs["PDF tables ยท docx ยท project docs"]
chats["ChatGPT / Claude exports"]
mem["memories/ โ agent-written notes"]
wikidir["wiki/ โ consolidated pages"]
end
subgraph loci["๐ง loci โ local index, nothing leaves the machine"]
ingest["ingest / watch<br>loaders โ chunker โ embedder"]
store[("ChromaDB<br>hybrid index")]
retrieve["hybrid retrieval<br>vector + BM25 โ RRF"]
mcp["loci-mcp<br>8 tools ยท resources ยท prompts"]
end
subgraph hosts["๐ฅ๏ธ Your AI hosts"]
ide["Claude Code ยท Qoder ยท Trae<br>Cursor ยท Cline"]
desktop["Claude Desktop"]
term["Terminal<br>search / ask / chat / wiki"]
end
api["โ๏ธ OpenAI-compatible API<br>Zhipu / DeepSeek / Kimi / OpenAI<br>or 100% offline via Ollama"]
sources --> ingest --> store
mem -. auto-indexed .-> store
wikidir -. auto-indexed .-> store
store --> retrieve
retrieve --> term
retrieve --> mcp
mcp <--> ide
mcp <-.-> desktop
retrieve -. "embedding + chat calls only" .-> api
The write path in one line: loaders โ chunker (heading-aware split) โ embedder โ store (ChromaDB, persistent) โ incremental, deduplicated by content hash.
Install & quick start
Requires Python 3.11+ (uses the stdlib tomllib).
bash
# option A: install from PyPI (adds `loci` and `loci-mcp` commands)
pip install "loci-rag[pdf,docx]"# optional extras: PDF w/ tables, Word documents# option B: zero-install quickstart
pip install -r requirements.txt
# 1. Configure: copy the example and fill in your valuescp config.example.toml config.toml
# 2. Ingest (incremental โ deduplicated by content hash, safe to re-run)
loci ingest # or: python main.py ingest# 3. Ask
loci ask "what did I write about X?"
The workflow
%%{init: {'theme':'base','themeVariables':{'background':'#000000','primaryColor':'#000000','primaryTextColor':'#00FF41','primaryBorderColor':'#00FF41','lineColor':'#00FF41','secondaryColor':'#001a00','tertiaryColor':'#000000','clusterBkg':'#000000','clusterBorder':'#00FF41','edgeLabelBackground':'#000000','fontSize':'14px','fontFamily':'trebuchet ms, verdana, arial, sans-serif'},'themeCSS':'.nodeLabel { color: #00FF41 !important; } .edgeLabel { background: #000 !important; color: #00FF41 !important; } .cluster-label { color: #00FF41 !important; }'}}%%
flowchart TD
A["pip install loci-rag"] --> B["cp config.example.toml config.toml<br>fill API keys + source dirs"]
B --> C["loci ingest โ hybrid index built"]
C --> D["loci watch โ index stays fresh (optional)"]
C --> E{"What do you need?"}
E -->|"a synthesized answer"| F["loci ask --verify<br>claim-by-claim audit"]
E -->|"raw excerpts to quote"| G["loci search --tag memory"]
E -->|"back-and-forth"| H["loci chat"]
E -->|"scattered notes on a topic"| I["loci wiki topic<br>consolidate into a wiki page"]
F --> J["loci remember โ<br>keep what you learned"]
I --> J
Then, from any of them: "remember that the staging password rotates on
Mondays" โ brain_remember โ later, from a different IDE:
"when does the staging password rotate?" โ answered, with the memory cited.
Memories live as plain markdown in the memories directory (git-friendly, no
lock-in) and are tagged memory, so loci search --tag memory scopes to them.
Cross-IDE tip: the default store / memories paths are relative to the
directory loci is launched from. If your IDEs start in different project
folders, point both at one absolute location in config.toml โ e.g.
store.path = "~/.loci/store" and memories.path = "~/.loci/memories" โ
and every IDE shares the exact same memory store.
%%{init: {'theme':'base','themeVariables':{'background':'#000000','primaryColor':'#000000','primaryTextColor':'#00FF41','primaryBorderColor':'#00FF41','lineColor':'#00FF41','actorBkg':'#000000','actorBorder':'#00FF41','actorTextColor':'#00FF41','signalColor':'#00FF41','signalTextColor':'#00FF41','noteBkgColor':'#001a00','noteBorderColor':'#00FF41','activationBkgColor':'#001a00','edgeLabelBackground':'#000000','fontSize':'14px','fontFamily':'trebuchet ms, verdana, arial, sans-serif'},'themeCSS':'.messageText { fill: #00FF41 !important; } .actor { fill: #000 !important; stroke: #00FF41 !important; } text.actor { fill: #00FF41 !important; }'}}%%
sequenceDiagram
participant CC as Claude Code
participant L as loci-mcp
participant S as ChromaDB (local)
participant T as Trae / Qoder / any IDE
CC->>L: brain_remember("deploy rotates Mondays")
L->>S: write memory.md + embed + index
Note over S: persists across sessions and IDEs
T->>L: brain_search("password rotation")
L->>S: hybrid retrieval
L-->>T: cited answer โ the memory is recalled
Ecosystem
loci-dsh โ visual plugin for
DeepSeek Harness: search,
ask, quick-capture memories and watch index stats from a sidebar in the dsh
web UI, talking to loci serve-http over local REST.
Mount it in any MCP host
Add to claude_desktop_config.json (Claude Desktop) or your MCP client's
config:
With this config, ingest / search / ask make zero cloud calls.
Swap in a bigger local chat model for better answers โ the pipeline is
model-agnostic.
Configuration
Key
Meaning
[llm]
base_url / api_key / model โ any OpenAI-compatible endpoint
[embed]
same; the model must be an embedding model (e.g. embedding-3)
[[sources]]
document directories, scanned recursively for .md / .txt / .html / .org (plus .pdf/.docx/images with the matching extras)
[[sources]] chunk_size / chunk_overlap
optional per-directory chunking override โ wins over the global [chunk] block
API keys can also come from the environment variables BRAIN_LLM_API_KEY /
BRAIN_EMBED_API_KEY (these override the config file).
Development
bash
git clone https://github.com/IvenKooLab/loci && cd loci
pip install -e ".[pdf,docx]"# editable install for hacking on loci
pip install -r requirements-dev.txt
pytest # fully offline, no API keys needed
See CONTRIBUTING.md for the ground rules (no frameworks,
tests stay offline, citations are sacred).
Design decisions
~300 lines of core, no LangChain โ every stage is readable, hackable,
and learnable. The whole engine fits in one sitting.
MCP-first โ the agent ecosystem is the UI layer. No web app to maintain.
Hybrid retrieval on by default โ vector search fused with a native
~60-line BM25 (CJK-aware tokenizer) via Reciprocal Rank Fusion.
Citations always, with breadcrumbs โ path > section, so claims are
verifiable at a glance.
Robust, inspectable indexing โ defensive loaders (skip what can't be
parsed, never hang), content-hash incrementality, real pruning, stats and
doctor so the index is never a black box.
Tiny notes stay searchable โ no minimum-chunk filter; a one-line note is
still indexed (a lesson from watching other tools drop or choke on them).
Keys never in code โ config.toml (gitignored) or env vars.