OpenMemory
ActiveDescription
Local persistent memory store for LLM applications including Claude Desktop, GitHub Copilot, Codex, and more. Provides durable context memory capabilities for AI agents.
Key Features
- Multi-sector cognitive memory: episodic, semantic, procedural, emotional, reflective
- Temporal knowledge graph with valid_from/valid_to for time-aware recall
- Self-hosted local-first storage via SQLite or Postgres, no vendor lock-in
- Python and Node SDKs with integrations for LangChain, CrewAI, AutoGen, MCP
- Explainable recall traces showing which memory nodes were used and why
- Data connectors for GitHub, Notion, Google Drive, OneDrive, and web crawlers
Use Cases
Tags
Categories
Quick Start
Python: `pip install openmemory-py` then `from openmemory.client import Memory; mem = Memory(); mem.add('user prefers dark mode', user_id='u1')`. Node: `npm install openmemory-js`. For server mode: `git clone` the repo, `cp .env.example .env`, then `docker compose up --build`. Backend exposes REST API, MCP server, and optional dashboard.