Spokes.wiki Search Graph Growth About

agentic-tooling-wiki

Software Application source ↗ source url updated Wed Jun 17 2026 00:00:00 GMT+0000 (Coordinated Universal Time)

Memory Vault

An open-source MCP server that gives Claude Code persistent memory by keeping project context in a local Postgres database instead of the model’s context window. Repo: github.com/mihaibuilds/memory-vault. Paged here from a MakeUseOf how-to (the source actually read; the repo is the canonical artifact).

The problem it targets

A coding agent’s working memory is the harness‘s finite context window. As it fills with file reads, tool output, and chat history, Claude Code auto-compacts — dropping older tool results and summarizing earlier turns. That is lossy: instructions and details “quietly get lost.” Memory Vault moves the durable context out of the window so it survives across sessions, /clear, and even a change of machine — the agent-memory layer made external and persistent.

How it works

Where it sits

The article frames it against Claude Code’s built-in CLAUDE.md — a plain-text file auto-loaded each session (the AGENTS.md-style project-context convention). That works but consumes tokens every session; Memory Vault keeps context out of the window and fetches it on demand instead.

It is the second standalone memory-as-infrastructure product in the spoke after seekdb. Where seekdb is an ambitious MySQL-compatible DB with copy-on-write FORK/MERGE sandboxes, Memory Vault is the lightweight end: stock Postgres + pgvector, Docker-deployed, and delivered to the harness over MCP rather than queried as a database. Same layer, opposite weight class.

Provenance & caveat

Tier T3 — a MakeUseOf install-walkthrough (secondary how-to content), not the project’s own docs or an independent evaluation. Every claim here traces to that article; the tool author (mihaibuilds) is a thin GitHub handle, recorded inline rather than as a node. No benchmark of retrieval quality or the team-collaboration claim — recorded as published.

agent-memory · seekdb · model-context-protocol · agents-md · durable-agents · openhuman · anthropic