Remembra
š What's New in v0.13.0
Dashboard v2.0
š Two-Factor Authentication ā TOTP-based 2FA with authenticator apps
š„ Team Collaboration ā Shared memory spaces with role-based access
š ļø Admin Dashboard ā Full user management (delete/deactivate/reset)
š Activity Log ā Security audit trail with JSON export
šµļø Entity Browser ā Visual exploration of people, places, concepts
ā° Timeline Fix ā Proper timezone handling with local time display
Core API
š¦ npm Package ā
npm install remembrawith full TypeScript supportš Security Fixes ā RBAC enforcement, SSRF protection, error sanitization
Supported Agents (6+)
Claude Desktop ⢠Claude Code ⢠Codex CLI ⢠Cursor ⢠Windsurf ⢠Gemini
Previous (v0.12.x)
š¤ User Profiles API with activity metrics
š§ Smart Auto-Forgetting (35+ temporal patterns)
ā° Event-driven expiry with
expires_atš Browser Extension for AI chat interfaces
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.
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/remembra-ai/remembra'
If you have feedback or need assistance with the MCP directory API, please join our Discord server