HN Show Friday Introduces Self‑Hosted Persistent Memory for AI Coding Agents (MCP)
agents open-source
| Source: HN | Original article
A new open-source tool called Friday offers self‑hosted persistent memory for AI coding agents, addressing a common design limitation.
A new open‑source project called **Friday** has been posted to Hacker News as a “Show HN” entry, offering developers a self‑hosted, persistent memory layer for AI‑driven coding assistants. The tool implements an MCP (Memory Control Protocol) server that stores session data in a local SQLite database, allowing agents such as Claude Code, Codex, Cursor and other MCP‑compatible models to retain project‑specific context across multiple interactions.
The core problem Friday tackles is the lack of durable memory in current AI coding tools. As the GitHub description notes, each session typically starts from a blank slate, forcing the assistant to repeat generic advice instead of building on prior work. By running a single Rust binary and a lightweight database, Friday provides “cognitive memory” without requiring external cloud services, preserving privacy and keeping the setup simple for individual developers or small teams.
The development follows a growing interest in MCP‑based integrations, which we first highlighted on 16 September 2026 when Xcode 27 introduced agentic coding features that embed Claude, Gemini and GPT directly into the IDE. Friday extends that trend from the IDE to a broader, language‑agnostic memory backend, and it joins other community efforts such as Rembric and Stash Memory that also expose self‑hosted MCP servers.
What to watch next is whether Friday gains traction among the tooling ecosystem that already supports MCP, and if major AI coding platforms adopt or officially endorse the protocol for persistent state. Developers may begin experimenting with the Docker image and SQLite file to see how durable context improves code suggestions, debugging assistance and project onboarding. If the approach proves effective, it could spur a wave of privacy‑first, locally managed AI assistants that move beyond the “stateless” model that has dominated the market so far.
Sources
Back to AIPULSEN