librechat-mnemonic
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., "@librechat-mnemonicwhat do you remember about my home network setup?"
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.
librechat-mnemonic
Automatic, project-scoped long-term memory for LibreChat, backed by a local mnemonic MCP server.
Chats inside a LibreChat project recall that project's memories and write new ones back to it. Chats outside a project use the global pool. It is on by default and can be turned off per chat, per user, or entirely.
Nothing is forked or patched. This runs as one container alongside LibreChat.
What it does
Recalls before every turn. Relevant memories are retrieved and injected as context before the model is called. This does not depend on the model deciding to call a tool.
Writes after every turn. Durable facts are extracted from the exchange and stored, with duplicates detected and skipped.
Scopes by LibreChat project. A chat in the "Home Network" project reads and writes memories stamped with that project. Memories live in one global vault, partitioned by project, so nothing is siloed unless you want it to be.
Stays out of the way.
/memory offin any chat, and that conversation stops recalling and storing.Exposes tools too. An MCP endpoint lets agents search, correct, and forget memories explicitly when the automatic path is not enough.
Related MCP server: Memory Crystal MCP Server
How it works
browser → LibreChat → librechat-mnemonic → your model provider
│ │
│ ├── stdio ──→ mnemonic ──→ vault (markdown + git)
│ │
└──── mongo ────┘ (read-only: conversation → project)LibreChat has no server-side plugin API, so the integration hangs off two supported extension points:
Custom endpoints with header placeholders. LibreChat resolves
{{LIBRECHAT_USER_ID}}and{{LIBRECHAT_BODY_CONVERSATIONID}}into request headers. That is how the proxy knows who is asking and in which conversation.MCP servers over streamable HTTP, for the explicit tool surface.
The project is not in the request. LibreChat's ALLOWED_BODY_FIELDS is conversationId, parentMessageId, messageId and nothing else, so the proxy resolves it itself: conversations.chatProjectId → chatprojects.name, read from the same MongoDB LibreChat already uses. Its own collections are never written to.
Why a proxy and not just MCP tools
Because "automatic" and "the model decides" are different things.
LibreChat's own memory feature can be driven externally: with memory.agent.enabled unset, every run loads memories from the MemoryEntry collection and injects them with no tool call involved. But that lookup is keyed by user id alone. There is no conversation or project dimension in the schema, and the load happens inside LibreChat before anything external runs. So that channel gives automatic but user-global.
The only place that can see the project is the request path. Hence a proxy.
The MCP tools are still worth having, they just do a different job: correcting a memory the extractor got wrong, or searching for something the recall query missed.
Requirements
LibreChat v0.8.7 or later (projects landed in 0.8.7; header placeholders are older)
Access to LibreChat's MongoDB
An embedding provider for mnemonic: a local Ollama, or an OpenAI or Gemini key
Quick start
Add the service to your LibreChat compose file. See docker-compose.example.yml for the annotated version.
services:
librechat-mnemonic:
image: ghcr.io/claudedowling/librechat-mnemonic:latest
restart: unless-stopped
environment:
LIBRECHAT_MONGO_URI: mongodb://mongo:27017/LibreChat
UPSTREAMS: >-
[{"name":"openai","baseUrl":"https://api.openai.com","api":"openai"}]
OLLAMA_URL: http://ollama:11434
volumes:
- mnemonic-vault:/vault
- mnemonic-projects:/projects
networks: [librechat-network]Then point LibreChat at it in librechat.yaml:
endpoints:
custom:
- name: 'OpenAI'
apiKey: '${OPENAI_API_KEY}'
baseURL: 'http://librechat-mnemonic:8710/openai/v1'
models:
default: ['gpt-4o']
headers:
x-librechat-user-id: '{{LIBRECHAT_USER_ID}}'
x-librechat-conversation-id: '{{LIBRECHAT_BODY_CONVERSATIONID}}'Restart LibreChat. Send a message. Type /memory status to confirm it is wired up.
The full example, including Anthropic and the MCP server, is in examples/librechat.yaml.
In-chat commands
The proxy answers these itself. The model is never called and no tokens are spent.
Command | Effect |
| List the commands |
| Enable or disable memory for this chat |
| Show the current setting, its source, and the project |
| Set your personal default for new chats |
| Drop this chat's override and follow your default |
| Store a memory now |
| Search memory without involving the model |
| Delete a memory by id |
Precedence is per-chat, then per-user, then MEMORY_DEFAULT_ENABLED.
How project scoping works
mnemonic derives project identity from a working directory. Its detection order is the git remote of the enclosing repo, then the git root folder name, then the plain basename of the directory. This uses the third branch: each LibreChat project gets a directory under MNEMONIC_PROJECT_ROOT, and its name becomes the mnemonic project.
A LibreChat project called Home Network becomes /projects/Home Network, which mnemonic resolves to { id: "home-network", name: "Home Network", source: "folder" }.
Writes use scope: global with that directory as cwd. mnemonic stores the note in the main vault while stamping it with the detected project. The note's frontmatter carries project: home-network and projectName: Home Network. That is what "one global vault, partitioned by project" means in practice.
What each recall scope actually returns
Verified against mnemonic 0.42, because the tool descriptions are misleading on this point:
| A chat in project "Home Network" sees |
| Only notes stamped |
| Everything in the vault, with |
| Everything in the main vault, unboosted. |
Note that global does not mean "notes with no project". mnemonic's tool description still says it returns only unscoped memories; the implementation returns every note in the main vault regardless of project stamp. If you need memories from one project kept out of another, use project.
Three more things to know:
The project directory must exist, and must exist on the filesystem of whichever process runs mnemonic. mnemonic calls
simpleGit(cwd)outside its error guard, so a missing path fails the whole call. In the default spawn mode this is handled for you. WithMNEMONIC_MODE=remoteit is your job.MNEMONIC_PROJECT_ROOTmust not be inside a git repository. If it is, mnemonic will attribute every memory to that repo instead of to the project.Project names collide. Two LibreChat users with a project of the same name share one mnemonic project. This service is designed for single-user and small-trusted-team installs; see Limitations.
Configuration
Everything is environment driven. Only LIBRECHAT_MONGO_URI and UPSTREAMS have no useful default.
LibreChat
Variable | Default | Description |
| required | Connection string for LibreChat's MongoDB |
| from the URI | Override the database name |
|
| Header carrying |
|
| Header carrying |
Upstreams
UPSTREAMS is a JSON array. Each entry mounts a provider at /<name>/..., and everything after the name is forwarded verbatim.
Field | Required | Description |
| yes | Path segment, e.g. |
| yes | Provider root, such that |
| no |
|
| no | Static credential replacing whatever LibreChat sends |
mnemonic
Variable | Default | Description |
|
|
|
| bundled | Executable used in spawn mode |
| none | Required when |
|
| JSON headers for the remote instance, e.g. auth |
|
| Vault directory, passed through as |
|
| Where per-project directories live |
|
|
|
|
|
|
|
| Memories retrieved per turn |
|
| Similarity floor passed to recall |
|
| Per-call timeout |
|
| Tag added to everything this service writes |
mnemonic's own variables (EMBED_PROVIDER, OLLAMA_URL, EMBED_MODEL, OPENAI_API_KEY, GEMINI_API_KEY, DISABLE_GIT, …) are passed through to the spawned process. See mnemonic's configuration.
Behaviour
Variable | Default | Description |
|
| Whether memory is on for chats with no explicit setting |
|
| Set false to write memories without injecting them |
|
|
|
|
| Budget for the injected block |
|
| User turns used to build the recall query |
|
| Cap on memories written per exchange |
|
| Recall score above which a candidate is treated as already known |
|
| Change if it clashes with something |
|
|
|
Extraction model
Leave unset to reuse the chat's own model and credentials. Setting a small dedicated model is cheaper.
Variable | Default | Description |
| none | OpenAI-compatible base URL, including |
| none | Model name |
| none | Bearer token |
|
| Extraction is detached; a timeout drops the write, never the reply |
Service
Variable | Default | Description |
|
| Listen port |
|
| Listen address |
|
| pino level |
|
| Serve the MCP endpoint |
|
| Where to serve it |
MCP tools
Available at /mcp for LibreChat agents.
Tool | Purpose |
| Semantic search, project-scoped |
| Store a note deliberately |
| Correct an existing note |
| Delete a note |
| Report the setting and project for this chat |
| Toggle automatic memory for this conversation |
The server ships serverInstructions telling the agent that recall is already automatic, so it should reach for these only when the automatic path falls short.
Limitations
Worth knowing before you rely on it.
The first turn of a brand new chat may miss its project. The conversation document may not be written when the first request arrives. The proxy retries once, and the post-turn write re-resolves the project, so writes are correct from turn one. The very first recall can fall back to global.
Only traffic routed through the proxy is augmented. Endpoints configured to talk to a provider directly get no memory. That is deliberate: the proxy cannot see what it does not carry.
Project names are the identity. Renaming a LibreChat project starts a new mnemonic project; the old memories stay under the old name. Directories under
MNEMONIC_PROJECT_ROOTcan be renamed to match, but nothing does it for you.Multi-user installs share memory by project name. There is no per-user partition in the vault. Fine for a personal or small-team instance, wrong for a multi-tenant one.
Automatic extraction is a judgement call made by a model. It will sometimes store something you would not have, and miss something you would.
MEMORY_WRITE_MODE=explicittrades recall for precision.Tool-calling turns are passed through untouched. Memory is injected on the request and extracted from the final text, so intermediate tool rounds are not analysed separately.
Images and releases
Published to the GitHub Container Registry:
ghcr.io/claudedowling/librechat-mnemonic:latest # newest release
ghcr.io/claudedowling/librechat-mnemonic:0.1 # newest 0.1.x
ghcr.io/claudedowling/librechat-mnemonic:0.1.0 # exact version
ghcr.io/claudedowling/librechat-mnemonic:main # tip of main, unreleasedBuilt for linux/amd64 and linux/arm64, with SBOM and signed build provenance. Verify a pull with:
gh attestation verify oci://ghcr.io/claudedowling/librechat-mnemonic:latest \
--repo claudedowling/librechat-mnemonicPin to a minor tag such as :0.1 in production. latest moves across breaking changes while the project is pre-1.0.
To cut a release, bump version in package.json, then tag:
git tag v0.1.0 && git push origin v0.1.0Development
npm install
npm test # unit tests
npm run typecheck
npm run dev # watch modeRequires Node 22 or later.
The pieces worth understanding first: src/memory/service.ts holds the scoping rules that both entrypoints share, src/proxy/handler.ts is the request path, and src/mnemonic/projects.ts explains the directory trick and the constraints that come with it.
Licence
MIT
This server cannot be installed
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
- AlicenseAqualityCmaintenancePersistent memory for AI agents. Store, recall, and share knowledge across sessions with five MCP tools: remember, recall, context, forget, and share. Includes semantic search and agent/user/org scoping.52Apache 2.0
- Alicense-qualityCmaintenanceEnables AI agents to maintain persistent memory across sessions by capturing conversations, extracting durable knowledge, and injecting relevant context, supporting various MCP-compatible platforms.9MIT
- Alicense-qualityCmaintenanceCentralized agentic memory and MCP gateway for LLMs, enabling persistent memory recall, validation, and integration with upstream MCP servers.1Apache 2.0
- Alicense-qualityCmaintenanceEnables AI assistants to have persistent long-term memory by automatically storing and retrieving important information via MCP tools.MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.
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/claudedowling/librechat-mnemonic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server