Remembra
๐ What's New in v0.16.0 โ Lossless Memory
Most memory layers store an LLM's paraphrase of what you said. Remembra now keeps the receipts.
๐งพ Verbatim source records โ the exact original text is preserved as an immutable record whenever facts are derived from it. Never LLM-merged, never rewritten.
๐ Receipts on every fact โ each derived fact carries
metadata.source_idpointing back to its source. Recall a fact, fetch its evidence.๐ก๏ธ Hallucination flagging โ every derived fact is verified against its source; facts that don't overlap the original are stored flagged
verified: false, not silently trusted.โก Fast writes (opt-in) โ
REMEMBRA_ASYNC_ENRICHMENT=truestores the verbatim source instantly and runs extraction in the background.๐ฉบ Production reliability โ request IDs on every response, honest 429/502 upstream error mapping, embedding cache (~8ร faster repeat recalls), litestream backups, and the opaque store-500 class of failures fixed at the root.
Previous highlights
๐ง Brain layer (v0.15+) โ GraphRAG-style community detection over your entity graph; 2D/3D knowledge graph in the dashboard
๐ Remote MCP โ multi-tenant streamable-HTTP MCP: connect any agent with just a URL + API key
๐ Dashboard v2 โ 2FA, teams, admin console, audit log, entity browser
Supported Agents (6+)
Claude Desktop โข Claude Code โข Codex CLI โข Cursor โข Windsurf โข Gemini
Related MCP server: remembrallmcp
The Problem
Every AI app needs memory. Your chatbot forgets users between sessions. Your agent can't recall decisions from yesterday. Your assistant asks the same questions over and over.
Existing solutions have tradeoffs:
Mem0: Graph features require $249/mo plan; limited self-hosting documentation
Zep: Academic approach, complex deployment
Letta: Research-grade, not production-ready
LangChain Memory: Too basic, no persistence
The Solution
from remembra import Memory
memory = Memory(user_id="user_123")
# Store โ entities and facts extracted automatically
memory.store("Had a meeting with Sarah from Acme Corp. She prefers email over Slack.")
# Recall โ semantic search finds relevant memories
result = memory.recall("How should I contact Sarah?")
print(result.context)
# โ "Sarah from Acme Corp prefers email over Slack."
# It knows "Sarah" and "Acme Corp" are entities. It builds relationships.
# It persists across sessions, reboots, context windows. Forever.โก Quick Start (2 Minutes)
One Command Install
curl -sSL https://raw.githubusercontent.com/remembra-ai/remembra/main/quickstart.sh | bashThat's it. Remembra + Qdrant + Ollama start locally. No API keys needed.
Or with Docker Compose directly:
git clone https://github.com/remembra-ai/remembra && cd remembra
docker compose -f docker-compose.quickstart.yml up -dTry it:
# Store a memory
curl -X POST http://localhost:8787/api/v1/memories \
-H "Content-Type: application/json" \
-d '{"content": "Alice is CEO of Acme Corp", "user_id": "demo"}'
# Recall it
curl -X POST http://localhost:8787/api/v1/memories/recall \
-H "Content-Type: application/json" \
-d '{"query": "Who runs Acme?", "user_id": "demo"}'Connect ALL Your AI Agents (NEW in v0.10.0)
One command configures everything:
pip install remembra
remembra-install --all --url http://localhost:8787This auto-detects and configures: Claude Desktop, Claude Code, Codex CLI, Cursor, Windsurf, Gemini.
Verify setup:
remembra-doctor allClaude Desktop โ add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"remembra": {
"command": "remembra-mcp",
"env": {
"REMEMBRA_URL": "http://localhost:8787",
"REMEMBRA_USER_ID": "default"
}
}
}
}Claude Code:
claude mcp add remembra -e REMEMBRA_URL=http://localhost:8787 -- remembra-mcpCursor โ add to .cursor/mcp.json:
{
"mcpServers": {
"remembra": {
"command": "remembra-mcp",
"env": {
"REMEMBRA_URL": "http://localhost:8787"
}
}
}
}Now ask Claude: "Remember that Alice is CEO of Acme Corp" โ then later: "Who runs Acme?"
Python SDK
pip install remembrafrom remembra import Memory
memory = Memory(user_id="user_123")
memory.store("Had a meeting with Sarah from Acme Corp. She prefers email over Slack.")
result = memory.recall("How should I contact Sarah?")
print(result.context) # "Sarah from Acme Corp prefers email over Slack."TypeScript SDK
npm install remembraimport { Remembra } from 'remembra';
const memory = new Remembra({ url: 'http://localhost:8787' });
await memory.store('User prefers dark mode');
const result = await memory.recall('preferences');๐ฅ Why Remembra?
Feature Comparison
Feature | Remembra | Mem0 | Zep/Graphiti | Letta | Engram |
One-Command Install | โ
| โ pip | โ pip | โ ๏ธ Complex | โ brew |
Bi-Temporal Relationships | โ Point-in-time | โ | โ ๏ธ Basic | โ | โ |
Entity Resolution | โ Free | ๐ฐ $249/mo | โ | โ | โ |
Conflict Detection | โ Auto-supersede | โ | โ | โ | โ |
PII Detection | โ Built-in | โ | โ | โ | โ |
Hybrid Search | โ BM25+Vector | โ | โ | โ | โ |
6 Embedding Providers | โ Hot-swap | โ (1-2) | โ (1) | โ | โ |
Plugin System | โ | โ | โ | โ | โ |
Sleep-Time Compute | โ | โ | โ | โ | โ |
Self-Host + Billing | โ Stripe | โ | โ | โ | โ |
Memory Spaces | โ Multi-tenant | โ | โ | โ | โ |
MCP Server | โ 11 Tools | โ | โ | โ | โ |
Pricing | Free / $49 / $199 | $19 โ $249 | $25+ | Free | Free |
License | MIT | Apache 2.0 | Apache 2.0 | Apache 2.0 | MIT |
Core Features
๐ง Smart Extraction โ LLM-powered fact extraction from raw text
๐ฅ Entity Resolution โ "Adam", "Mr. Smith", "my husband" โ same person
โฑ๏ธ Temporal Memory โ TTL, decay curves, historical queries
๐ Hybrid Search โ Semantic + keyword for accurate recall
๐ Security โ PII detection, anomaly monitoring, audit logs
๐ Dashboard โ Visual memory browser, entity graphs, analytics
๐ Benchmark Results
Tested on the LoCoMo benchmark (Snap Research, ACL 2024) โ the standard academic benchmark for AI memory systems.
Category | Accuracy | Questions |
Single-hop (direct recall) | 100% | 37 |
Multi-hop (cross-session reasoning) | 100% | 32 |
Temporal (time-based queries) | 100% | 13 |
Open-domain (world knowledge + memory) | 100% | 70 |
Overall (memory categories) | 100% | 152 |
Scored with LLM judge (GPT-4o-mini). Adversarial detection not yet implemented. Run your own:
python benchmarks/locomo_runner.py --data /tmp/locomo/data/locomo10.json
๐ Documentation
Resource | Description |
Get running in minutes | |
Full Python reference | |
JavaScript/TypeScript guide | |
Tool reference + setup guides for 11 tools | |
API reference | |
Docker deployment guide |
๐ ๏ธ MCP Server
Give any AI coding tool persistent memory with one command. Works with Claude Code, Cursor, VS Code + Copilot, Windsurf, JetBrains, Zed, OpenAI Codex, and any MCP-compatible client.
pip install remembra[mcp]
claude mcp add remembra -e REMEMBRA_URL=http://localhost:8787 -- remembra-mcpAvailable Tools (11 total):
Tool | Description |
| Save facts, decisions, context |
| Semantic search across memories |
| Update content without delete+recreate |
| GDPR-compliant deletion |
| Browse stored memories |
| Search the entity graph |
| Cross-agent memory sharing via Spaces |
| Temporal browsing by entity and date |
| Point-in-time relationship queries |
| Auto-extract from chat history |
| Verify connection |
๐๏ธ Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Your Application โ
โโโโโโโโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Python โ TypeScript โ MCP Server (Claude/Cursor) โ
โ SDK โ SDK โ remembra-mcp โ
โโโโโโโโโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Remembra REST API โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโค
โ Extraction โ Entities โ Retrieval โ Security โ
โ (LLM) โ (Graph) โ (Hybrid) โ (PII/Audit) โ
โโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโค
โ Storage Layer โ
โ Qdrant (vectors) + SQLite (metadata/graph) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ๐ค Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
# Clone
git clone https://github.com/remembra-ai/remembra
cd remembra
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Start dev server
remembra-server --reload๐ License
MIT License โ Use it however you want.
โญ Star History
If Remembra helps you, please star the repo! It helps others discover the project.
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-qualityBmaintenancePersistent knowledge memory layer for AI agents. Hybrid semantic + full-text search with pgvector, code dependency graph with blast-radius impact analysis, and incremental indexing for 7 languages. In-process ONNX embeddings, no external API required.Last updated4335MIT
- Alicense-qualityAmaintenanceUser-owned shared memory for AI agents, providing a persistent, curated knowledge layer with hybrid search and cross-agent coordination via Postgres + pgvector.Last updated14Apache 2.0
- Alicense-qualityCmaintenanceSelf-hosted memory service that gives AI agents persistent, searchable memory across sessions, machines, and projects.Last updatedMIT
Related MCP Connectors
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Persistent memory for AI agents โ verbatim conversations, searchable by meaning.
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/remembra-ai/remembra'
If you have feedback or need assistance with the MCP directory API, please join our Discord server