Scenario guide

Best Memory MCP Servers in 2026

By default every agent conversation starts from zero. Memory MCP servers persist facts, preferences, and project context across sessions — from the official knowledge-graph server to vector-store-backed options with semantic recall.

The trade-off to compare below: simple file-based stores are transparent and easy to inspect, while embedding-based retrieval scales better but is harder to audit. Each detail page describes the storage model.

108results
DC
deusdata/codebase-memory-mcp
Developer tools

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens.

23.9K 060
MC
mksglu/context-mode
Developer tools

Context window optimization for AI coding agents. Sandboxes tool output (98% reduction), persists session memory, and enforces routing across 17 platforms via MCP + hooks.

18.7K 099
GP
gentleman-programming/engram
Developer tools

Persistent memory system for AI coding agents. Agent-agnostic Go binary with SQLite + FTS5, MCP server, HTTP API, CLI, and TUI.

5K 050
AG
aldinokemal/go-whatsapp-web-multidevice
API development

GOWA - WhatsApp REST API with support for UI, Multi Account, Webhooks, and MCP, and Chatwoot. Built with Golang for efficient memory use.

4.2K 099
MO
moltis-org/moltis
Developer tools

A secure persistent personal agent server in Rust. One binary, sandboxed execution, multi-provider LLMs, voice, memory, Telegram, WhatsApp, Discord, Teams, and MCP tools.

2.8K 048
DM
doobidoo/mcp-memory-service
Developer tools

Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.

1.9K 064
GP
ghostwright/phantom
Developer tools

An AI co-worker with its own computer. Self-evolving, persistent memory, MCP server, secure credential collection, email identity. Built on the Claude Agent SDK.

1.4K 062
MA
mnemox-ai/tradememory-protocol
Developer tools

Decision audit trail + persistent memory for AI trading agents. Outcome-weighted recall, tamper-evident SHA-256 chain with RFC 3161 anchoring, 20 MCP tools.

1.4K 061
DN
dataojitori/nocturne_memory
Developer tools

A lightweight, rollbackable, and visual Long-Term Memory Server for MCP Agents. Say goodbye to Vector RAG and amnesia.

1.3K 096
MT
mibayy/token-savior
Developer tools

MCP server that gets Claude to 97.9% (188/192) on a real coding benchmark at -80% active tokens and -83% wall time, vs 78.3% plain. Structural code navigation + persistent memory engine.

1.1K 060
MP
miscusi-peek/cheatengine-mcp-bridge
Developer tools

Connect Cursor, Copilot & Claude AI directly to Cheat Engine via MCP. Automate reverse engineering, pointer scanning, and memory analysis using natural language.

979 074
AM
alioshr/memory-bank-mcp
Developer tools

A Model Context Protocol (MCP) server implementation for remote memory bank management, inspired by Cline Memory Bank.

915 094
View all matching entries · 108

FAQ

What does a memory server actually store?

Whatever the agent decides to record: user preferences, project conventions, decisions made in earlier sessions. The official server uses an entity-relation knowledge graph; alternatives use key-value or vector stores.

Where does the data live?

Almost all options below store locally — a JSON file or a local database. Check the detail page if you want the memory shared across machines; that usually means pointing the server at a hosted store.

Can memory leak between projects?

Yes, if you run one global memory store. A practical pattern is one memory server instance per project, configured with a project-specific storage path in each workspace's MCP config.

Related guides