Mnemosyne
Provides persistent memory for LLM applications, enabling AI assistants to remember user preferences, facts, and conversation history across sessions.
README
Mnemosyne
A persistent memory layer for LLM applications. Stores, retrieves, and injects relevant context from past conversations so your AI assistant remembers who you are and what you care about.
Exposes a Model Context Protocol (MCP) server that any MCP-compatible client (Claude Desktop, Cursor, etc.) can connect to.
How it works
User message
│
▼
┌─────────────────────────────────────────────────────┐
│ Session graph │
│ Load working memory (Redis) │
│ → Retrieve episodic memories (pgvector) │
│ → Retrieve long-term facts (pgvector) │
│ → Inject memory block into system prompt │
│ → Generate LLM response with memory context │
└─────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────┐
│ Ingestion graph │
│ LLM extracts key facts from conversation │
│ → Auto-select chunk strategy │
│ → Embed chunks (OpenAI text-embedding-3) │
│ → Store in pgvector + extracted facts as │
│ long-term memories │
└─────────────────────────────────────────────────────┘
Memory tiers
| Tier | Storage | TTL | Purpose |
|---|---|---|---|
working |
Redis | 4 hours | In-session context (current conversation) |
episodic |
Postgres | Decays over time | Specific events and interactions |
long_term |
Postgres | Persistent | Stable facts, preferences, habits |
semantic |
Postgres | Persistent | General knowledge extracted across episodes |
Retrieval pipeline
Every query runs through hybrid search (dense vector + BM25 keyword), Reciprocal Rank Fusion, optional Cohere reranking, and token-budget trimming before memories are returned.
Prerequisites
- Docker and Docker Compose
- Python 3.11+
piporuv
Setup
1. Clone and enter the directory
git clone <repo-url>
cd mnemosyne
2. Configure environment
cp .env.example .env
Open .env and fill in the required values:
# Required: OpenAI key for embeddings (always needed)
OPENAI_API_KEY=sk-...
# Required: choose one LLM provider for generation
LLM_PROVIDER=gemini # anthropic | openai | gemini | local
GEMINI_API_KEY=your-key # or ANTHROPIC_API_KEY / OPENAI_API_KEY
# Optional but recommended: Cohere for reranking
COHERE_API_KEY=
# Optional: Langfuse for observability (get keys at cloud.langfuse.com)
LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
# Optional: encryption at rest for stored memories
ENCRYPT_KEY=
LLM provider options:
LLM_PROVIDER |
Default model | Free tier |
|---|---|---|
gemini |
gemini-1.5-pro |
Yes — set LLM_MODEL=gemini-2.0-flash for best free limits |
anthropic |
claude-opus-4-8 |
No |
openai |
gpt-4o |
No |
local |
llama3 via Ollama |
Yes — requires Ollama running locally |
To override the model, set LLM_MODEL=gemini-2.0-flash (or any model ID).
3. Start infrastructure
make up
Starts Postgres (with pgvector) on port 5432 and Redis on port 6379 via Docker.
4. Install Python dependencies
pip install -e ".[dev]"
# or with uv:
uv pip install -e ".[dev]"
5. Run database migrations
make migrate
6. Start the MCP server
python mcp/server.py
Using with Claude Desktop
Add Mnemosyne as an MCP server so Claude Desktop automatically gains persistent memory.
Open ~/Library/Application Support/Claude/claude_desktop_config.json and add:
{
"mcpServers": {
"mnemosyne": {
"command": "python",
"args": ["/absolute/path/to/mnemosyne/mcp/server.py"],
"env": {
"PYTHONPATH": "/absolute/path/to/mnemosyne"
}
}
}
}
Restart Claude Desktop. A hammer icon will appear in the input bar with 4 memory tools available.
What Claude can now do
Claude will call memory tools automatically. You can also prompt it directly:
"Remember that I prefer dark mode in all my projects."
"What do you know about my coding preferences?"
"Forget everything about my old job."
"What did we discuss last week about the auth system?"
Available MCP tools
| Tool | What it does |
|---|---|
ingest_memory_tool |
Save information from the current conversation |
retrieve_memory_tool |
Search past memories by topic or query |
session_init_tool |
Load all relevant memories at the start of a conversation |
forget_memory_tool |
Delete a specific memory by ID |
Using with Cursor
Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{
"mcpServers": {
"mnemosyne": {
"command": "python",
"args": ["/absolute/path/to/mnemosyne/mcp/server.py"]
}
}
}
Using the Python API directly
import asyncio
from mnemosyne.agents.router import Intent, route
async def main():
# Store a memory
await route(
Intent.INGEST,
user_id="user-123",
content="The user prefers Python over JavaScript and uses VS Code.",
conversation_id="conv-abc",
tier="long_term",
)
# Ask a question — memory is retrieved and injected automatically
result = await route(
Intent.CHAT,
user_id="user-123",
conversation_id="conv-abc",
user_message="What editor should I set up for this project?",
)
print(result.response)
# → "Based on your preference for VS Code, here's how to set it up..."
# Retrieve raw memories without generating a response
result = await route(
Intent.RETRIEVE,
user_id="user-123",
query="programming language preferences",
)
for memory in result.final_memories:
print(f"[{memory.tier.value}] {memory.content} (score: {memory.score:.3f})")
asyncio.run(main())
Local LLM with Ollama (no API keys)
Run entirely offline:
# Install Ollama from https://ollama.com, then pull a model
ollama pull llama3
Set in .env:
LLM_PROVIDER=local
LOCAL_LLM_BASE_URL=http://localhost:11434
LOCAL_LLM_MODEL=llama3
Note: you still need
OPENAI_API_KEYfor embeddings. To remove that dependency, swap the embedding provider to a local model inembedding/tiered.pyusing theLocalEmbedderclass.
Background jobs
Run these on a schedule (cron or similar) to keep memories healthy:
# Decay old memories — reduces score of stale episodic/long-term memories
# Recommended: run nightly
python jobs/decay_sweep.py
# Rebuild BM25 keyword search index
# Recommended: run after bulk ingestion
python jobs/index_rebuild.py
Development
make test # run test suite
make lint # ruff + mypy
make down # stop Docker services
Project structure
mnemosyne/
├── agents/ # LangGraph pipelines (ingestion, retrieval, session)
├── chunking/ # Auto-selecting text chunking strategies
├── config/ # Settings (pydantic-settings) and structured logging
├── embedding/ # OpenAI and local embedding providers, tiered routing
├── evals/ # Evaluation harness and golden set
├── infra/ # Dockerfile
├── jobs/ # Decay sweep and index rebuild cron jobs
├── llm/ # LLM providers: Anthropic, OpenAI, Gemini, Local (Ollama)
├── mcp/ # MCP server and tool definitions
├── memory/ # Memory types, decay, and access tracking
├── observability/ # Langfuse tracing, metrics, health check
├── prompts/ # YAML prompt templates
├── retrieval/ # Hybrid search, BM25, reranker, RRF, assembler
└── storage/ # Postgres (pgvector), Redis, S3, encryption, RLS
Architecture notes
- No LLM required to run — if
LLM_PROVIDERis unset or the API key is missing, ingestion still stores raw chunks andsession_initstill returns the memory block. You can pass the memory block to your own LLM. - Multi-user — each call takes a
user_id. Memories are isolated per user via Postgres row-level security. - Pluggable reranking — Cohere reranking is optional. Without a
COHERE_API_KEYthe system falls back to RRF ordering. - Chunking is automatic — the ingestion pipeline inspects content and picks the best strategy: fixed, recursive, sentence-based, or structural (for Markdown/code).
Mnemosyne
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。