mnemo
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., "@mnemorecall the decision about using TypeScript"
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.
mnemo
Local memory for AI coding agents. On‑demand. Strictly offline. Built for 10+ agents on a 16 GB machine.
What it is
A persistent memory layer for agents (Claude Code, Cursor, Windsurf, any MCP client) that remembers decisions, bugs, progress, and rules across sessions. What sets it apart:
strictly local — zero cloud calls; embeddings and LLM run only on your machine;
on‑demand — nothing runs in the background; the service spins up under load and shuts down after a grace period;
no Docker daemon — embedded storage inside a single process (LanceDB);
lightweight — ~1 GB RAM while active, ~0 when idle; a small model (Qwen3‑4B / Gemma 4) runs only during background consolidation;
concurrent — one shared service serves 10+ agents; writes are cheap (embed + insert, no LLM on the hot path);
simple — 3 core MCP verbs (
recall/remember/search); soft project scoping with first‑class cross‑project search.
Related MCP server: Archivist MCP
Core principles
No LLM on the write path. A write = local embedding + upsert. The LLM runs only in the background, in batches.
One shared process, started on demand. Not 10 stdio processes hitting one file — one service + thin shims.
Heavy things are transient. The generative model is loaded only for a consolidation window, then unloaded.
Typed memory, soft scoping.
decision / debug / progress / rule / ...acrossproject/global/ (optional)sessionscopes — projects organize memory but never wall off search; cross‑project search is first‑class.Tiny, obvious API. Three verbs the agent learns in seconds; type/scope are parameters, not extra tools. Ops commands live in the CLI.
Extra models are opt‑in. Default = embedder + one optional background generator; more small models only when justified.
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.
Latest Blog Posts
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/arttttt/mnemo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server