MCP-Memory is a Model Context Protocol (MCP) server designed to equip AI agents, including tools like Claude Desktop, Cursor, and Codex, with persistent, long-term memory. This allows agents to store, retrieve, and manage stateful memory snippets that remain available across multiple chat turns and sessions, addressing a common limitation in current AI agent architectures.
Memory records within MCP-Memory are formatted according to the Open Knowledge Format (OKF v0.2) standard. Each memory item is stored as a Markdown document with YAML frontmatter, adhering to specified OKF rules. For efficient data retrieval, these records are indexed using a local SQLite instance, which leverages FTS5 (Full-Text Search) for rapid key-value lookups and content searches, achieving sub-20ms lookup times.
The system employs a dual-layer architecture. It automatically syncs every memory to disk as a raw .md file within a human-browseable OKF directory, complete with hierarchical index.md files and log.md for update history. Key features include namespace isolation for contextual separation (e.g., user preferences, project architecture), and a setup wizard for auto-configuration with installed MCP tools. The server exposes primary MCP tools for agents to store, update, and query memory records using parameters like key, content, tags, and namespace.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
MCP-Memory is a new Model Context Protocol (MCP) server that gives AI agents persistent, long-term memory capabilities. It stores memory records using the Open Knowledge Format (OKF v0.2) standard and indexes them with a local SQLite instance for fast lookups and content search, allowing agents to retain state across sessions.