Open source ยท MIT

Your AI's memory,
shareable with people.

Peer-to-peer AI memory sharing โ€” approved on both sides.
Works in any AI tool. No server, no signup, nothing uploaded.

npm install -g memshare-mcp

Works with Claude Code, Cursor, Windsurf, VS Code โ€” anything that speaks MCP.

The problem

Knowledge is collective. AI memory isn't.

A decision gets made in a meeting. Someone hits a gotcha. A convention emerges. That knowledge belongs to the team โ€” but every memory product on the market files it per account.

๐Ÿ”

Everyone teaches it separately

Six engineers each explain the same five facts about the same codebase to their own AI. You pay O(n) for something that should cost O(1).

๐Ÿ†•

New people start from zero

A new hire spends their first week teaching their AI what six other people's AIs already know perfectly well.

๐Ÿ”’

You can't see it or move it

Ask any AI what it knows about you and you get a list you cannot export, edit precisely, or verify was ever deleted.

How it works

You talk. It remembers, and hands things over.

Every step is a sentence. Before anything is written or taken in, memshare shows you exactly what is about to change hands, and waits โ€” the approval moves into the conversation instead of disappearing from it.

1

Your AI records what it learns

Install it once, connect it, then just work. No commands, no curating a knowledge base.

"we went with Postgres โ€” the JSONB support decided it"

โ†’ the assistant calls memory_set()
โ†’ saved as shareable โ€” it is a project fact
2

You decide what the team gets

The assistant marks project facts shareable and anything about you private. Reviewing that, and changing your mind, is yours โ€” either in conversation or at a prompt. Deleting is a sentence too, and only ever yours to ask for.

"make the project-x notes shareable"

โ†’ memory_set_visibility(). no command, no syntax.

"forget what you know about the old auth flow"

โ†’ it shows you what matched, then memory_forget().
โ†’ the memory record is gone. nothing to verify, nothing cached.
3

They accept what's useful

You are shown the exact list before a file is written. Send it however you like โ€” Slack, email, a USB stick. On the other side they can read the whole bundle without taking any of it, then see every item and take only what they want โ€” and nothing they already had is overwritten.

"send the project-x notes to Sam, good for 30 days"

โ†’ 2 memories would go. 1 held back (contains an email).
โ†’ you say yes, and the bundle file is written.

# Sam, on his machine:
"what's in what Dana sent me?"
โ†’ the whole list. nothing imported, nothing changed.
"import what Dana sent me"
โ†’ he sees each item and picks what he wants

Use cases

What people actually do with it.

Between people, between tools, between sessions โ€” the same local store serves all of them.

Between people

๐Ÿ†•

Onboarding a new teammate

Instead of spending a week "teaching" their AI about the project, the tech lead shares a bundle โ€” internal terms, architecture decisions, code conventions. Day one, the new hire's AI already knows.

๐ŸŽจ

Designer on Cursor, devs on Claude

The designer's AI knows the component conventions. The backend devs' AI knows the API contract. One bundle each way and neither side re-explains โ€” across people and across vendors.

๐Ÿ”„

Project handoff

A freelancer finished their part. Instead of the next person starting from zero, they share a bundle โ€” client preferences, decision history, technical gotchas.

Between tools and sessions

๐Ÿ”€

Switching tools mid-project

Claude Code today, Cursor tomorrow, Windsurf next month. Every MCP client reads the same local store โ€” there is nothing to migrate.

โšก

Multiple models in parallel

Claude for code, ChatGPT for research, Gemini for document analysis. All read from the same memory store โ€” no duplicating context three times.

๐ŸชŸ

Between distant sessions

Long conversation with rich context. Open a new chat and it's all there โ€” the MCP server carries your memory across sessions automatically.

How it compares

Others solve "my memory". None solve "our memory".

ToolCross-modelSelf-hostedUser-to-userConsent flow
Claude / ChatGPT memoryโœ—โœ—โœ—โœ—
Mem0โœ“โœ“โœ—โœ—
OMPโœ“โœ“โœ—โœ—
Portable Memoryโœ“โœ“โœ—โœ—
memshareโœ“โœ“โœ“โœ“

Get started

Running in about a minute.

Or try the whole flow first in a sandbox that never touches your real store โ€” see the repo.

npm install -g memshare-mcp
memshare init
claude mcp add memshare --scope user -- npx -y memshare-mcp serve

That is the whole setup. Restart your assistant and it can recall and save straight away. --scope user because the store is yours, not one project’s; npx because a client started from a desktop icon rather than a shell often cannot find a globally installed binary.

memshare init is the line that makes it stick โ€” it writes a standing request into the instruction files your assistant already reads at the start of every session. Nothing in MCP can make a model decide to call a tool.

Cursor, Windsurf, VS Code, Claude Desktop

Same first two lines. Then, instead of claude mcp add, put the server in whichever file your client keeps its MCP config in:

{
  "mcpServers": {
    "memshare": {
      "command": "npx",
      "args": ["-y", "memshare-mcp", "serve"]
    }
  }
}

Any MCP client works, and they all read the same local store โ€” so what you save in Cursor is there in Claude Code.