Vestige — a local-first MCP memory server for agents (FSRS decay, active forgetting) #1352
samvallad33
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Wanted to share a project in case it is useful to people here, since I see a few memory and brain harnesses in this category already.
I built Vestige, a local-first memory server for AI agents that speaks MCP. It runs as a single Rust binary, stores everything in a local SQLite database, and makes no external calls for the core memory functions, so it lines up well with the self-hosted, own-your-data approach a lot of Khoj users care about.
A couple of things that make it different from a plain vector store:
Install is
npm install -g vestige-mcp-server, then point any MCP client atvestige-mcp.Repo: https://github.com/samvallad33/vestige
Full disclosure, I am the author, so I am biased. Mostly sharing because the local-first crowd here seems like the right audience, and I would genuinely like feedback from people running self-hosted setups.
All reactions