MCP Server Adds Persistent Memory with Retrieval Scoring to Claude Code

Solving Claude Code's Memory Problem
The developer identified that Claude Code's biggest limitation as an autonomous agent isn't prompting or tool use—it's memory. While CLAUDE.md and /memory help within a project, they don't solve cross-session or cross-project memory issues. Knowledge gained in project A isn't available in project B.
Core Insight: Not All Memories Are Equal
The system implements retrieval scoring where:
- Facts that lead to successful outcomes score up
- Facts that lead to failures score down
- Stale facts that haven't been accessed decay naturally
- No manual curation needed—scoring is automatic
In practice, about 80% of stored facts are never retrieved again, with the scoring system surfacing the 20% that actually matter.
Drift Detection for Knowledge Decay
The system addresses knowledge decay where agents confidently use outdated information. Drift detection flags facts likely outdated based on age and domain volatility. Different types of information have different decay rates:
- API endpoints go stale in days
- Design decisions remain valid for months
- Config values decay faster than architectural decisions
Setup and Implementation
The solution is implemented as an MCP server. Setup takes about 30 seconds:
npx engram-mcpOnce added to Claude Code config, Claude Code can store facts, retrieve scored results, and check for drift through normal MCP tool calls.
Pricing and Availability
The free tier provides 1 agent with 10,000 facts. The pro version costs $29/month for unlimited usage. The npm package is engram-mcp, and the site is engram.cipherbuilds.ai.
📖 Read the full source: r/ClaudeAI
👀 See Also
Needle: A 26M Parameter Function-Calling Model That Runs at 6000 tok/s on Mobile
Cactus open-sources Needle, a 26M parameter model for single-shot function calling, achieving 6000 tok/s prefill and 1200 tok/s decode on consumer devices. Built with Simple Attention Networks (no FFNs), it beats several larger models on tool-use benchmarks.

Claude Code Skill Converts Stitch Designs to Next.js with Zero Pixel Drift
A Claude Code skill converts Google Stitch AI designs to Next.js components with mandatory verification checkpoints to prevent pixel drift, preserving exact values and handling assets.

Open Source Chrome Extension Development Skills Package Released
Developer quangpl has packaged four years of Chrome extension development experience into eight AI agent skills covering scaffolding with WXT, manifest generation, security auditing, testing, asset generation, publishing, and MV2 to MV3 migration.

Open Source Claude Code Tools for Automated Bug Bounty Hunting
Three open source repositories automate the bug bounty pipeline using Claude Code. The tools handle recon, scanning for web2/web3 vulnerabilities, and generate submission-ready reports.