localmem-mcp
Health Uyari
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Gecti
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Gecti
- Permissions — No dangerous permissions requested
Bu listing icin henuz AI raporu yok.
Local-first, zero-API memory for AI agents. Persistent, private, and yours — runs entirely on your machine, no cloud calls, no API keys.
localmem-mcp
Give your AI agent a memory that never leaves your machine.
No cloud. No API keys. No per-call billing. Just SQLite and local embeddings.
Quickstart (30 seconds)
1. Add it to your MCP client. No install step — uvx fetches and runs it:
// Claude Desktop: claude_desktop_config.json
// Cursor: .cursor/mcp.json
// Claude Code: claude mcp add localmem -- uvx localmem-mcp
{
"mcpServers": {
"localmem": {
"command": "uvx",
"args": ["localmem-mcp"]
}
}
}
2. Restart the client and talk to it:
"Remember that we chose SQLite over Postgres for this project because it ships in a single file."
…then, in a completely new session tomorrow:
"What database did we pick, and why?"
That's it. Your agent now remembers, and nothing left your laptop.
Prefer a normal install?pip install localmem-mcp # then use "command": "localmem-mcp" in the config above
The three tools
| Tool | What the agent uses it for |
|---|---|
store_memory |
Save a durable fact, decision, or preference — with optional tags. |
search_memory |
Find memories by meaning, not keywords. "which database?" finds "we went with SQLite". |
recall_memory |
Re-read a specific memory by id, or catch up on the most recent ones. |
Plus memory_stats for where the database lives and how much is in it.
Also a Python library
The MCP server is a thin shell over a store you can import directly:
from localmem_mcp import MemoryStore
store = MemoryStore() # ~/.localmem/memories.db
store.add("We chose SQLite over Postgres", tags=["decision", "architecture"])
for hit in store.search("what database are we using?"):
print(hit.score, hit.memory.content)
And a CLI, for when you just want to look:
localmem-mcp add "Deploys go out on Thursdays" --tag ops
localmem-mcp search "when do we ship?"
localmem-mcp recall -n 5
localmem-mcp stats
Privacy
Nothing is sent anywhere. Memories live in one SQLite file you own, and
embeddings are computed on-device with fastembed.
The only network request the package ever makes is the one-time download of the
embedding model (~90 MB, from Hugging Face) on first use — after that it works
fully offline. Delete ~/.localmem/memories.db and the memory is gone.
Architecture
MCP client (Claude Code, Cursor, Claude Desktop, OpenClaw…)
│ stdio / JSON-RPC
▼
server.py FastMCP — store_memory · search_memory · recall_memory
▼
store.py MemoryStore
├── SQLite memories table + FTS5 index (durable, single file)
└── fastembed ONNX embeddings, lazy-loaded (on-device, 384-dim)
Search is hybrid: every memory is scored by cosine similarity against the
query embedding, and memories that also hit the FTS5 keyword index get a bounded
bonus — so paraphrases are found and exact terms like error codes or names
aren't lost. Embeddings are stored as float32 blobs alongside the text, so a
memory is one row and there is no second datastore to keep in sync.
The model loads lazily on the first store/search call, which keeps server
startup near-instant for clients that spawn it eagerly.
Configuration
| Environment variable | Default | Purpose |
|---|---|---|
LOCALMEM_DB_PATH |
~/.localmem/memories.db |
Full path to the SQLite file. |
LOCALMEM_HOME |
~/.localmem |
Directory used when LOCALMEM_DB_PATH is unset. |
LOCALMEM_MODEL |
BAAI/bge-small-en-v1.5 |
Any model name supported by fastembed. |
Point separate projects at separate databases with --db or LOCALMEM_DB_PATH.
Contributing
Issues and PRs are welcome, and the project is deliberately small enough to read
in one sitting — store.py is the whole thing, and everything else is a shell
over it.
git clone https://github.com/OpenAgentHQ/localmem-mcp && cd localmem-mcp
python -m venv .venv && .venv/bin/pip install -e ".[dev]"
.venv/bin/python -m pytest -q # offline, about a second
CONTRIBUTING.md covers the layout, the testing approach, and
what does and doesn't fit the project.
Good first issues
are scoped to be approachable without deep context.
- Code of Conduct
- Security policy — report vulnerabilities privately, please
License
Yorumlar (0)
Yorum birakmak icin giris yap.
Yorum birakSonuc bulunamadi