supermem
Provides Docker-based deployment options for running the MCP server in production.
Integrates with GitHub to import repositories as markdown content into the vault via the supermem connect github command.
Integrates with Google Docs to import documents into the vault via OAuth authentication using the supermem connect google_docs command.
Integrates with Notion to import workspace exports into the vault via the supermem connect notion command.
Supports Ollama as an LLM provider for local model inference in memory operations.
Supports OpenAI models (via OpenRouter or directly) as an LLM provider for memory operations.
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., "@supermemsearch my memory for project updates"
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.
supermem
Persistent AI memory without RAG — four-tier retrieval that uses an LLM agent only as a last resort, backed by SQLite FTS5, an embedded graph database, and your local markdown vault.
An MCP (Model Context Protocol) server that gives AI assistants — Claude Desktop, LM Studio, ChatGPT — persistent, structured memory backed by SQLite + an optional graph database. The LLM agent is tier 4, not the default path — most queries resolve in milliseconds via full-text search.
Highlights
Capability | What it gives you |
Four-tier retrieval | Fast FTS5 first, graph expansion second, optional vector search third, and LLM fallback only when needed. |
Local-first vault | Markdown files remain portable and inspectable; SQLite/Kuzu/Chroma indexes can be rebuilt. |
Memory lifecycle | Observations carry provenance, confidence, sensitivity, validity, TTL, and |
Retraction workflow | Stale or sensitive observations can be retracted from FTS, vector-backed retrieval, timelines, and derived summaries. |
Local productivity insights | Heuristic open-task extraction, follow-up suggestions, and day summaries without an LLM call. |
Safer operations | Path-safe backup restore, shared MCP auth/rate guards, PR-safe CI release validation, and a documented security posture. |
Related MCP server: tartarus-mcp
Quick Start (Personal, No GPU)
pip install supermem
# Point supermem at a directory of markdown files
export SUPERMEM_VAULT_PATH=~/notes
export SUPERMEM_LLM_PROVIDER=openrouter
export OPENROUTER_API_KEY=your_key_here
# Start the MCP server (add to Claude Desktop's mcp.json)
supermem serveAdd to Claude Desktop mcp.json:
{
"mcpServers": {
"supermem": {
"command": "supermem",
"args": ["serve"]
}
}
}Quick Start (Production with Docker)
# Clone and configure
git clone https://github.com/lamenting-hawthorn/supermem
cp .env.example .env
# Edit .env: set SUPERMEM_VAULT_PATH, SUPERMEM_LLM_PROVIDER, API keys
# MCP server only (stdio, for Claude Desktop)
docker compose up supermem-mcp
# MCP server + HTTP dashboard
docker compose --profile worker up
# Dashboard at http://localhost:37777Architecture: Four-Tier Retrieval
Every query goes through tiers in order, short-circuiting when enough results are found. Tiers 1–3 never call an LLM.
Query
│
├─ Tier 1: SQLite FTS5 full-text search ~1ms always available
│ porter tokenizer, WAL mode
│
├─ Tier 2: Kuzu embedded graph expansion ~5ms optional (install kuzu)
│ BFS traversal via [[wikilink]] edges
│
├─ Tier 3: ChromaDB vector similarity ~50ms optional (SUPERMEM_VECTOR=true)
│ sentence-transformer embeddings
│
└─ Tier 4: LLM agent fallback ~5-30s always available
navigates vault via a restricted local executorShort-circuit rule: if tier 1 returns ≥ min_results (default 3), tiers 2–4 are skipped entirely. Unavailable tiers are skipped with a WARNING log — no errors raised. Candidate IDs are filtered through observation lifecycle status before being returned, so retracted memories are excluded from search, timeline context, and derived summaries.
Memory Lifecycle and Retraction
Each observation is stored with lifecycle/provenance metadata designed for source-grounded memory:
Field group | Examples | Purpose |
Source |
| Trace a memory back to an import, file, conversation, or time span. |
Validity |
| Represent changing facts and retrieval confidence. |
Governance |
| Support privacy labels, TTL cleanup, and active/retracted filtering. |
Use retract_observation or POST /observations/{id}/retract to mark stale or sensitive records as retracted. Retraction removes the observation from FTS, filters it from hybrid retrieval, deletes vector chunks when available through the MCP/worker path, removes it from timelines and recent-session context, and invalidates derived session summaries. Retraction reasons are stored in a non-FTS audit table so the value being forgotten is not re-indexed as an active memory.
MCP Tool Reference
Tool | Parameters | Returns | Notes |
|
| Formatted answer | Backward-compatible. Routes through all 4 tiers; falls back to full agent only if tiers 1–3 insufficient |
|
| JSON with | Preferred for programmatic use. Token-efficient — returns IDs first |
|
| JSON array of observation dicts | Fetch full content for specific IDs |
|
| JSON array of chronological observations | Context around a specific observation |
|
| JSON with likely unresolved tasks | Local heuristic open-loop inbox inspired by ambient memory tools |
|
| JSON with next-action suggestions | Turns open tasks into concise follow-up prompts |
|
| JSON day summaries | Keywords, highlights, and open-loop counts from recent observations |
|
| JSON retraction status | Marks stale or incorrect memories as retracted so retrieval ignores them |
Progressive Disclosure Pattern
# 1. Search — cheap, returns IDs only
result = await supermem_hybrid("Alice's project status", tier_limit=2)
# {"obs_ids": [42, 17, 88], "source_tier": 1, "latency_ms": 2.1}
# 2. Fetch — only for IDs you actually need
obs = await get_observations([42, 17])
# [{"id": 42, "content": "...", "tier_used": 1}, ...]
# 3. Timeline — context around interesting observations
ctx = await get_timeline(42, window=3)
# 4. Retract — remove stale/sensitive memory from retrieval
await retract_observation(obs_id=42, reason="superseded by current roadmap")Local Insight Pattern
# Open-loop inbox for recent memory
tasks = await list_open_tasks(days=14, limit=20)
# Turn open tasks into concise next-action prompts
followups = await suggest_followups(days=14, limit=10)
# Summarize recent days without an LLM call
summaries = await list_day_summaries(days=7)Environment Variables
Variable | Default | Description |
|
|
|
| provider default | Model string (e.g. |
|
| SQLite database path |
|
| Markdown vault directory |
|
| Set |
| (none) | Bearer token for HTTP API auth (disabled if unset) |
|
| Requests/minute limit per client identity across MCP tools |
|
| HTTP dashboard port |
|
| Observations written before LLM compression |
|
| Retention window for regular observations ( |
| (required for openrouter) | OpenRouter API key |
| (required for claude) | Anthropic API key |
|
| Ollama server URL |
|
| LM Studio server URL |
Note: Local model inference (vLLM/CUDA) is an optional extra. Install with
pip install supermem[local]if you need it. Not included in the default install.
Connector Guide
Import external data into your vault with one command:
# ChatGPT export (Settings → Data controls → Export data → .zip)
supermem connect chatgpt ~/Downloads/chatgpt_export.zip
# Notion workspace export (.zip)
supermem connect notion ~/Downloads/notion_export.zip
# Nuclino workspace export (.zip)
supermem connect nuclino ~/Downloads/nuclino_export.zip
# GitHub repositories (live via API)
supermem connect github owner/repo1,owner/repo2 --token ghp_xxx
# Google Docs (OAuth, opens browser)
supermem connect google_docs "My Doc Name"All connectors write markdown to your vault, then automatically index the files into SQLite + graph. Private content wrapped in <private>...</private> tags is stripped before indexing.
CLI Reference
supermem serve # Start MCP server (stdio transport, for Claude Desktop)
supermem serve --worker # Start MCP server + HTTP dashboard on :37777
supermem chat # Interactive terminal REPL (no client required)
supermem backup # Create timestamped .tar.gz (vault + SQLite)
supermem backup --output /path/to/archive.tar.gz
supermem restore <archive.tar.gz>
supermem connect <type> <source> [--token TOKEN] [--max-items N]HTTP Dashboard (Optional)
Start with supermem serve --worker or docker compose --profile worker up.
Endpoint | Method | Description |
| GET | RFC 9728-style metadata for remote MCP discovery |
| GET |
|
| GET | Paginated session list with summaries |
| GET | Filter by session/date/type |
| POST |
|
| POST | Reindex entire vault |
| GET | Streams vault + DB as |
| GET |
|
| GET | Local heuristic open-loop/task extraction |
| GET | Follow-up suggestions derived from recent open tasks |
| GET | Local day summaries with keywords and highlights |
| POST | Mark an observation retracted so retrieval ignores it |
Auth: Authorization: Bearer <SUPERMEM_API_KEY>. Disabled when env var is unset.
Remote HTTP deployments should set
SUPERMEM_API_KEYand reviewSECURITY.md. The default posture is trusted local MCP stdio, not internet-facing multi-tenant hosting.
Privacy and Security
Wrap sensitive content in <private>...</private> tags. It is stripped before writing to any storage layer (SQLite, Kuzu, ChromaDB). The content passes through to the restricted local executor only — it never persists.
# Meeting Notes
Alice discussed the roadmap.
<private>Budget: $2.4M approved for Q3</private>
Next steps: ship v2 by June.Additional safeguards:
Backup restore rejects archive members that would escape the configured vault.
MCP tools share one auth/rate-limit guard and one per-client rate bucket.
The Python executor blocks denied imports, scrubs inherited environment variables, and wraps common filesystem APIs; it is still a restricted local executor, not a substitute for container/OS isolation for hostile code.
Remote HTTP deployments should set
SUPERMEM_API_KEY, avoid exposing the worker directly to the public internet, and reviewSECURITY.md.
CI and Release Checks
Pull requests run lint, formatting, type-checking, tests with coverage, Docker build validation, and package build validation. Docker pushes and PyPI publishing remain gated to version-tag pushes (v*) so PRs validate release artifacts without publishing them.
Running Tests
uv run pytest tests/ -v # all tests
uv run pytest tests/unit/ -v # unit only (fast, no network)
uv run pytest tests/integration/ -v # integration (real storage)
uv run pytest tests/ --cov=supermem --cov-report=term-missing # with coverageCoverage gate: 60% (CI enforced). Kuzu and Anthropic tests are auto-skipped if packages are not installed.
License
Apache 2.0 — see LICENSE.
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
- Alicense-qualityCmaintenanceMCP server providing persistent memory management for AI agents using SQLite and FTS5, enabling storage, full-text search, and recall of memories with namespace isolation.Last updated1MIT
- Alicense-qualityDmaintenanceA local-first MCP memory server providing persistent, searchable memory for AI agents, powered by SQLite.Last updated381Apache 2.0
- Flicense-qualityBmaintenanceMCP server that gives AI agents and teams persistent, shared memory using a knowledge graph with vector embeddings, automatic consolidation of related facts, and hybrid search.Last updated3
- AlicenseAqualityBmaintenanceA local-first MCP server for durable agent memory using SQLite and FTS5, enabling knowledge graph storage, search, and recall for AI agents.Last updated201MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
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/lamenting-hawthorn/supermem'
If you have feedback or need assistance with the MCP directory API, please join our Discord server