Mneme
@TheGoatPsy
About Mneme
Local-first, audit-safe memory for Claude Code and MCP clients.
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mneme": {
"command": "npx",
"args": [
"-y",
"mneme-mcp-server"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Mneme?
Mneme is a vault-native memory server for Claude Code and other MCP clients. It stores conversation memory as plain Markdown files in a directory (vault), making the data git-diffable, grepable, and editable.
How to use Mneme?
Install the Claude Code plugin with pipx install mneme-cc-plugin && mneme install. Alternatively, install the npm package mneme-mcp-server for use with any MCP client. No cloud account is required; the vault is a local directory of markdown files.
Key features of Mneme
- Markdown as ground truth, no opaque binary storage
- No LLM call on the critical path; deterministic Stop capture
- Hybrid retrieval with FTS5 BM25 and opt-in local dense embeddings
- Token-efficient architecture with adaptive context budget
- Built-in
<private>tag redaction with SHA256 audit log - Temporal claim lifecycle with valid-from/to, supersedes, and provenance time-travel
Use cases of Mneme
- Persistent, editable memory for Claude Code sessions
- Team memory via self-hosted git sync with redaction-before-share
- Code memory through procedural AGENTS.md parsing and fix-trajectory recording
- Project and code graph analysis with tree-sitter extraction
- Agent autonomy with policy-graduated edits and tamper-evident audit log
FAQ from Mneme
What makes Mneme different from other memory tools?
Mneme stores all memory as plain Markdown files instead of opaque SQLite blobs. It never calls an LLM on session end (summarization is deterministic and zero-LLM by default), and it runs entirely locally with no cloud account required.
Does Mneme require Obsidian?
No. A vault is simply a directory of plain .md files. You can use grep, git, VS Code, or any text editor. Obsidian is fully optional; if you already use it, you can point it at the same directory for rendered notes and graph-view navigation.
Is Mneme local-first?
Yes. All memory data, indexes, staging, and audit logs stay in a .mneme directory within the vault. No outbound network calls occur except for the opt-in compression LLM and optional local Neo4j instance.
Does Mneme use an LLM for summarization?
No, the default session summary is deterministic and zero-LLM. LLM-based compression is available as an opt-in feature with a monthly cost-cap ledger, but never runs on the Stop hook or critical path.
What are the runtime dependencies of Mneme?
The core packages (mneme-core, mneme-cc-plugin, mneme-mcp-server) require Python or Node.js. Optional dependencies include sentence-transformers for dense retrieval and Docker + Neo4j for knowledge-graph temporal enrichment. No cloud infrastructure is required.
Frequently asked questions
What makes Mneme different from other memory tools?
Mneme stores all memory as plain Markdown files instead of opaque SQLite blobs. It never calls an LLM on session end (summarization is deterministic and zero-LLM by default), and it runs entirely locally with no cloud account required.
Does Mneme require Obsidian?
No. A vault is simply a directory of plain `.md` files. You can use `grep`, `git`, VS Code, or any text editor. Obsidian is fully optional; if you already use it, you can point it at the same directory for rendered notes and graph-view navigation.
Is Mneme local-first?
Yes. All memory data, indexes, staging, and audit logs stay in a `.mneme` directory within the vault. No outbound network calls occur except for the opt-in compression LLM and optional local Neo4j instance.
Does Mneme use an LLM for summarization?
No, the default session summary is deterministic and zero-LLM. LLM-based compression is available as an opt-in feature with a monthly cost-cap ledger, but never runs on the Stop hook or critical path.
What are the runtime dependencies of Mneme?
The core packages (`mneme-core`, `mneme-cc-plugin`, `mneme-mcp-server`) require Python or Node.js. Optional dependencies include `sentence-transformers` for dense retrieval and Docker + Neo4j for knowledge-graph temporal enrichment. No cloud infrastructure is required.
Basic information
More Memory & Knowledge MCP servers
Solomd
zhitongblogA markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
RAG Documentation MCP Server
hannesrudolphAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.
MemoryMesh
CheMiguel23A knowledge graph server that uses the Model Context Protocol (MCP) to provide structured memory persistence for AI models.
Ultimate Google Docs & Drive MCP Server
a-bonusThe Ultimate Google Docs, Sheets, Drive, Gmail, & Google Calendar MCP Server. This MCP (primarily for use in Claude Desktop) gains full access to your google suite and lets claude do its thing.

Memory
modelcontextprotocolModel Context Protocol Servers
Comments