Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5 MCP-Memory, a Model Context Protocol server, provides AI agents with persistent memory using Google's Open Knowledge Format v0.2 and SQLite FTS5, enabling sub-20ms key lookups and full-text search. The server exposes four MCP tools for storing, retrieving, and searching memory records, and supports namespace isolation and automatic setup for tools like Claude Desktop, Cursor, and Codex. 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 https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/main/okf/SPEC.md standard and indexed with a local SQLite instance supporting FTS5 full-text search for fast key-value lookups, tag filtering, and content search. Fast Track: Jump directly to Quick Start Persistent State Across Sessions: Enables AI agents to read, store, search, and delete stateful memory snippets that persist across chat turns and sessions. OKF Standard Compliance: Stores every memory item formatted as an OKF v0.2 Markdown document with YAML frontmatter type , key , namespace , tags , generated , sources , verified , status , stale after , adhering strictly toand SPEC.md . OKF RULES.md Dual-Layer Architecture: Human-Browseable OKF Directory : Automatically dumps and syncs every memory to disk as a raw .md file inside the memory/ bundle directory with hierarchical index.md progressive disclosure files root index.md versioned with okf version: "0.2" and log.md update history tracking. High-Performance SQLite Indexing : SQLite FTS5 Full-Text Search and automatic triggers for sub-20ms key lookups and instant keyword searches. Namespace Isolation: Supports contextual separation e.g. user/preferences , project/architecture , default . Zero Boilerplate Setup: Quick setup wizard python3 setup.py auto-configures installed MCP tools Antigravity, Claude, Cursor, Windsurf, Codex . The server exposes four primary MCP tools to interacting agents: Stores or updates a memory record in OKF v0.2 format. Parameters: key string, required : Unique identifier or path for the memory e.g. user/preferences/coding style or project/architecture . content string or object, required : Core information to store. project root string, required : Absolute path to the active project root directory e.g. /Users/user/Projects/my-app . tags array of strings, optional : Classification tags for filtering. namespace string, optional, default: : Scope/namespace. "default" concept type string, optional, default: : OKF concept type e.g. "Agent Memory" Metric , Playbook , Attested Computation . title string, optional : Display name. description string, optional : One-line summary. resource string, optional : Canonical URI of underlying asset. status string, optional, default: : Lifecycle state "stable" draft | stable | deprecated . stale after string, optional : ISO date YYYY-MM-DD . sources array of objects, optional : Provenance sources {resource, id, title, author, usage count, last modified} . verified array of objects or object, optional : Verification events {by, at} . generated by string, optional : Actor identifier following actor convention