MCP-Loci: Local Persistent Memory Server for Claude and MCP-Compatible AI

What MCP-Loci Does
MCP-Loci is a persistent memory server built to address Claude's limitation of forgetting context between sessions. Instead of re-explaining who you are, what you're working on, or copying context documents each time you start a new conversation, this tool maintains memory across sessions.
Key Features and Implementation
The server provides five tools:
- remember
- recall
- forget
- synthesize
- health
The recall functionality uses a hybrid approach combining:
- BM25 keyword matching via SQLite FTS5
- Local semantic embeddings using all-MiniLM-L6-v2
This hybrid query approach addresses the limitations of pure keyword search (which fails when you can't remember exact phrases) and pure semantic search (which can be slow and imprecise).
Technical Details
The system runs fully local with no API keys required for search. Installation involves:
- One pip install command
- Four lines of JSON configuration in your Claude Desktop config
The tool is compatible with Claude and any MCP-compatible AI.
📖 Read the full source: r/ClaudeAI
👀 See Also

Coordinator Server for Multi-Agent Development Prevents Overwrites
A developer built a Node.js coordinator server that manages line-range locking, line shift tracking, and real-time messaging between AI agents working on the same codebase. The system prevents agents from overwriting each other's work by using HTTP-based locking with conflict detection.

Chat Saver CG: Browser Extension Built with Claude Exports Conversations Across 12 AI Platforms
A developer built Chat Saver CG, a browser extension that exports and transfers conversations between Claude, ChatGPT, Gemini, and 9 other AI platforms, using Claude extensively for development including architecture decisions, debugging DOM parsing issues, and writing adapter logic.

GrapeRoot MCP Tool Reduces Claude Code Token Usage by 50-70%
A developer built GrapeRoot, an MCP tool using Claude Code, that tracks explored files and avoids re-reading unchanged content, reducing token usage by 50-70% and making $20 Claude Code plans last 2-3× longer.

Silent Tool Failures in Coding Agents: A Hidden Efficiency Drain
Coding agents often encounter tool failures that go unnoticed because they fall back to alternative strategies, wasting tokens and reducing quality. The open-source tool Vibeyard detects these failures and suggests fixes.