Agentage Memory 0 an open, files-first memory server for any MCP client (remote, OAuth 2.1 + DCR) #786
vreshch
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.
-
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