// HACKER NEWS — CYBERSECURITY
Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5
MCP-Memory is a Model Context Protocol (MCP) server that equips AI agents (such as Claude Desktop, Cursor, Antigravity, Windsurf, or Codex) with persistent, long-term memory capabilities.
Memory records are formatted using the Open Knowledge Format (OKF v0.2) standard and indexed with a local SQLite instance (supporting FTS5 full-text search) for fast key-value lookups, tag filtering, and content search.
The server exposes four primary MCP tools to interacting agents:
Stores or updates a memory record in OKF v0.2 format.
Retrieves a specific memory by its key and namespace.
Finds memories matching keywords, tags, or namespace filters.
AGENT DIRECTIVE (Session Start): Retrieves the last recorded session checkpoint (system/last_memory) so the AI agent immediately knows where work was left off when opening a project or starting a session.
AGENT DIRECTIVE (Milestones & Progress): Updates the canonical session checkpoint (system/last_memory) whenever completing a milestone, making key changes, or pausing work.
Every stored memory strictly adheres to the OKF v0.2 specification (SPEC.md & OKF_RULES.md):
Run setup.py to auto-detect and register mcp-memory with your AI tools: