Agentage Memory 0 an open, files-first memory server for any MCP client (remote, OAuth 2.1 + DCR) #786
Replies: 1 comment
-
|
The files-first shape is the part I like most here. For shared agent memory, being able to inspect and export the raw Markdown is a much better operator story than an opaque vector store. On the tool surface, I would keep For OAuth/DCR, the things I would want visible to the user or admin are:
For the tools themselves, I would consider making writes more explicit than a generic overwrite path. For example, The other useful boundary is provenance. If multiple agents share the same memory, each note or edit probably needs at least source client, timestamp, and reason/task id metadata. Otherwise the memory becomes portable, but debugging "why does every agent now believe this?" is still hard. Disclosure: I work on Armorer Labs. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Pre-submission Checklist
What would you like to share?
Hi all 👋 Sharing a remote MCP server I've been building: agentage Memory.
The gap I kept hitting: every assistant now has its own memory (ChatGPT memory, Claude memory, …), but it's siloed per-vendor, you can't see the raw data, and you can't move it between tools. I wanted one memory that any AI can read and write - and that I actually own.
What it is: a hosted, remote MCP server that exposes a single personal memory as plain Markdown files. Anything that speaks MCP can read/write it, and the same notes are mirrored locally as
.mdyou can open in your editor or export anytime.Server details
https://memory.agentage.io/mcpmemory__search- full-text search across your memorymemory__list- folder-tree outline of what's storedmemory__read- read a note (raw Markdown)memory__write- create / overwrite a notememory__edit- in-place edits (replace / append)memory__delete- remove a noteConnect (any remote-MCP client, e.g. Claude Code):
{ "mcpServers": { "agentage-memory": { "type": "http", "url": "https://memory.agentage.io/mcp" } } }The first call kicks off the OAuth flow via DCR; after sign-in the tools show up.
What's a bit different from other memory servers
Links
Would love feedback from this community — especially on the OAuth/DCR flow and the tool surface (naming, the
search/listsplit, anything you'd expect from a memory server that's missing). Happy to dig into any of the design choices. 🙏Relevant Links
Beta Was this translation helpful? Give feedback.
All reactions