Mind Keg MCP: Persistent Memory for Claude Code and MCP-Compatible Agents

What Mind Keg MCP Does
Mind Keg MCP addresses the common frustration where Claude Code forgets everything between sessions. It's an MCP server that acts as persistent memory for Claude Code and any MCP-compatible agent. Claude stores small learnings as it works with you, then retrieves them via semantic search in future sessions.
The more you use Claude Code, the more it actually knows about your codebase, your preferences, and your patterns. Sessions stop feeling like day one. When Claude hits a problem it's seen before, it searches its memory, gets the relevant context back automatically, and doesn't repeat the same mistake.
Technical Implementation
Under the hood:
- Semantic search runs locally with ONNX embeddings (FastEmbed)
- No API keys, no cost, fully offline
- Also supports OpenAI embeddings or FTS5 keyword search if you prefer
- Three scoping levels: repo-specific, workspace-wide, and global
- SQLite storage, zero external dependencies
- API key auth with SHA-256 hashing
- TypeScript, Node.js 22, MIT license
Compatibility and Setup
Works with Claude Code, Cursor, Windsurf, Codex CLI, Gemini CLI, and GitHub Copilot.
Quick start:
npm install -g mindkeg-mcp
mindkeg api-key create --name "My Laptop"
# Add the MCP config to Claude Code. Done.Development Background
The developer built this entirely using Claude Code as their coding partner, from architecture decisions to implementation to debugging. The tool is 100% free and open source.
📖 Read the full source: r/ClaudeAI
👀 See Also

Prefex: A Local Proxy for Claude Code That Automates Prompt Caching and Session Memory
Prefex is a local proxy that sits between Claude Code and Anthropic's API, automatically injecting the header required for Anthropic's beta prompt caching feature. It also implements session memory to avoid resending full conversation history and includes a model router for cost optimization.

Mastering Antropic Subscription Modes: Haiku, Sonnet, and Opus
Explore Antropic's innovative subscription modes—Haiku, Sonnet, and Opus—designed to enhance your AI coding experience with tailored features and pricing.

ClawCut Proxy Released on GitHub to Optimize OpenClaw for Small LLMs
ClawCut is an experimental proxy that manipulates, injects JSON calls, and extracts JSON clutter from OpenClaw to reduce cognitive overload on small models (7B-8B) running on limited hardware.

Zerostack 1.0.0: A Unix-Inspired Coding Agent in Pure Rust
Zerostack is a coding agent written in pure Rust, modeled on Unix philosophy — small composable tools piped together via stdin/stdout.