Memoars is an invite-only encrypted memory layer that lets AI assistants share a unified memory via MCP, with client open-sourced and hosted coordinator coming soon.
I struggled a bit with context sharing, knowledge sharing, memories sharing between AI agents (I use two or three on a daily basis). Each of them has its own memory, they dont share it or its a bit cumbersome to do memory curation and improve it (especially if there are some API AI calls that run occasionally from different models) Memoars is an attempt to solve it - one memory that belongs to you (no storage vendor lock) that any assistant can read and write through MCP (with appropriate set of skills to make it easier) . How it works: - Memory content is encrypted on your machine (XChaCha20-Poly1305, key derived with Argon2id) and written directly to storage you own - R2, S3, MinIO, Supabase, local fs, etc) - A coordinator handles the metadata plane: sequence numbers, versions, grants, conflict resolution. It never receives the workspace content key, so it can't read memory content. It does see operational metadata - org, workspace, identity, version, usage - Every change lands in an append-only, hash-chained log with compare-and-swap on writes, so two clients can't silently clobber each other and you can see how a memory got to its current state. - Permissions are orgs → workspaces → identities, with per-workspace grants. Each workspace has its own passphrase, so isolation is enforced by encryption as well as by the API. It's invite-only right now, and I want to be honest that this is a invite list rather than a product you can go install this afternoon (as I want to make sure it makes sense and that it solves a problem for you before its shipped). The client is being open-sourced and the hosted coordinator opens shortly after. I will reply to all inquiries - and Im looking forward to a feedback Tnx for taking a look!
The author built mem-port, a local MCP server that gives AI copilots (ChatGPT, Claude Code, Cursor, Windsurf) shared long-term memory via embedded SurrealDB, solving context drift between AI tools.
Nexus Memory is an MCP-native memory server that allows AI agents to share context via a unified protocol, enabling persistent and coordinated memory across different agents without custom integration.
MemPalace is a local-first, open-source AI memory tool that stores conversation history verbatim and retrieves it with semantic search, achieving 96.6% R@5 on LongMemEval without any API calls or LLM. It features a pluggable backend architecture, CLI interface, and supports Claude Code, Gemini CLI, and MCP-compatible tools.
Adaptive Recall is a memory system for AI assistants that uses cognitive science and machine learning to improve retrieval quality over time. It offers an API with multiple retrieval strategies, knowledge graph construction, and self-improving capabilities.