The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Rememb listing page.

Operate AI agents without losing context between sessions. rememb is a local-first persistent memory layer: structured entries, keyword search, versioning, diff, restore, and audit trail — no cloud service required.

Teams using agents at real velocity rarely fail because they lack generation. They fail because operating agents every day creates context debt:
Every team or solo developer operating agents professionally hits this wall:
Existing solutions often center on hosted memory layers, API keys, or opaque context pipelines. What you actually need is to resume the next session with the minimum correct context and a trail you can inspect.
rememb is built around four memory problems:
Zero friction. No CLI commands. Native IDE integration.
1. Add to your IDE's MCP config:
2. Restart your IDE.
The agent can read stored context at session start, write durable memory when something changes, and search only when targeted recall is needed.
If you want rememb usage to stay consistent, add a rememb-specific instruction block in your IDE custom instructions or in the MCP client prompt that wraps the agent. The point is to make the agent route reads, writes, search, recovery, and maintenance through rememb instead of ad hoc prompt memory.
You can place that block in either of these places:
In both cases, keep the scope explicit: these rules are about how the agent should use rememb, not about replacing the rest of your coding instructions.
For the exact copy-paste block, use the canonical rules section in MCP_TOOLS.md.
No extra storage setup, server config, or schema migration is required. In MCP mode, rememb resolves storage home-first and auto-initializes ~/.rememb when needed.
For the current public MCP tool list (17 tools) and descriptions, see MCP_TOOLS.md.
If you want multiple MCP clients on the same machine to reuse one already-running rememb process, start a persistent local SSE transport:
This keeps one MCP process alive, so repeated clients can connect through http://127.0.0.1:8765/sse and http://127.0.0.1:8765/messages/.
Do not put --transport sse inside a stdio MCP client config. stdio clients expect JSON-RPC on stdin/stdout; the SSE mode exposes an HTTP endpoint and must be started separately.
A local store on disk. Your agent can read prior decisions, search by keywords and tokens, update entries without losing history, and restore previous versions without depending on a cloud memory service. Copy ~/.rememb/ anywhere to move the store.
These map to rememb_write, rememb_edit, and rememb_delete. For the full MCP surface, see MCP_TOOLS.md.
Search uses keyword and token matching over entry content and tags. rememb returns full matches; the agent applies semantic relevance judgment. No API keys, no cloud, no embedding model download at runtime.
config.json is written during initialization with all supported knobs:
Set storage_backend to sqlite for larger stores. The Web UI and MCP migrate existing JSON entries automatically when you switch backends.
entry_batch_size and entry_load_threshold control pagination in the web UI — how many cards load at once and when to trigger "load more".
Section names are normalized to lowercase, duplicates are ignored after normalization, and removing a section with existing entries automatically migrates those entries to uncategorized. meta.json is kept in sync with the current effective section list.
Older stores may still contain legacy embedding-related config keys; they are dropped the next time configuration is loaded or saved.
| Section | What to store |
|---|---|
project | Tech stack, architecture, goals |
actions | What was done, decisions made |
systems | Services, modules, integrations |
requests | User preferences, recurring asks |
user | Name, style, expertise, preferences |
context | Anything else relevant |
rememb includes a local web interface for supervision — browse memory, inspect history, and tune runtime settings. Entry writes and edits go through MCP; the Web UI does not expose create/edit/delete controls for entries.

Overview with entry totals and recent memory activity.

Stats with totals, section breakdown, date range, and recent entries.

Settings for limits, storage backend, section colors, and maintenance actions.

Skills browser for bundled agent skills included with rememb.
Views:
Entry inspection from the UI includes version history and side-by-side diff. Restore is available through MCP (rememb_restore); the Web UI is read-only for entry mutations.
rememb_search accepts an optional exact tag filter, so IDE clients can restrict keyword matches before ranking.
The current compatibility surface is tracked explicitly in COMPATIBILITY.md.
Short version:
~/.rememb/ anywhere, it worksCore capabilities:
PRs welcome. Issues welcome. Stars welcome. 🌟
MIT