
purmemo
β 2from purmemo-ai
AI conversation memory that works everywhere β save and recall across Claude, ChatGPT, Gemini, Cursor, and all MCP-compatible platforms. 11 tools including shared community memories.
pΕ«rmemo
Memory for your AI tools. Claude remembers who you are, what you're working on, and what you said last time β across every session, on every platform.
Just want it in ChatGPT or Claude.ai in your browser? Get the Chrome Extension instead.
If something goes wrong
purmemo command not found? Close and reopen your terminal, then try again. New commands sometimes need a fresh shell.
You see "Failed to read token" or "bad decrypt"? Run:
purmemo --update && purmemo initThis clears any stale credentials and signs you back in. (Fixed in v15.7.20+ β if you're on an older version, this is a one-time thing.)
Anything else? Open an issue at github.com/purmemo-ai/purmemo-mcp/issues β we read every one.
What it does
- Remembers everything β save any conversation, recall it later by typing what you remember about it.
- Knows who you are β your role, your projects, your stack β loaded automatically into every new session.
- Works everywhere β Claude Code, Claude Desktop, Cursor, Windsurf, Zed, anything that speaks MCP.
Three slash commands you'll use most:
| You type | What happens |
|---|---|
/save | Saves this conversation. Use the same title later β updates the same memory. |
/recall <topic> | Search your memories in plain English. |
/context | At the start of a session β loads who you are and what you were last working on. |
Pricing
| Plan | Price | Recalls | Saves |
|---|---|---|---|
| Free | $0 | 50/month | Unlimited |
| Pro | $19/month | Unlimited | Unlimited |
For developers
Looking for the technical stuff? It's all here:
- Tools, resources, prompts reference β every MCP tool the server exposes (
save_conversation,recall_memories,commit,snapshot,run_workflow, etc.) - Living document semantics β
mode='append'vsmode='replace', chunking behavior, ADR-036/038 details. - Identity layer β the cognitive fingerprint that loads into every session.
- Architecture decisions (ADRs) β every design decision, with context and trade-offs.
- Source for the install scripts β read before running, if you want.
Links
- Dashboard β view and manage memories
- Chrome Extension β for ChatGPT, Claude.ai, Gemini in browser
- Privacy Policy β encrypted in transit and at rest, never shared
- Support / Issues
License
The MCP connector code in this repo is MIT licensed. The pΕ«rmemo platform, API, and backend are proprietary.
npm install -g purmemo-mcp && purmemoBefore it works, you'll need: PURMEMO_API_KEY
Install in 30 seconds
1. Paste this into your terminal
Mac or Linux:
curl -fsSL https://app.purmemo.ai/install | shWindows (PowerShell):
irm https://app.purmemo.ai/install.ps1 | iexThat's it for installing. The script handles everything β it'll install Node if you don't have it, set up the purmemo command, and tell you when it's done.
2. Type purmemo
purmemoYour browser opens. Sign in (or create a free account). Close the tab when it says you're done.
3. Restart Claude
Quit and reopen Claude Desktop (or Claude Code). pΕ«rmemo is now connected.
You'll know it worked when your next Claude session opens with a header like:
pΕ«rmemo v15.7.20 Β· you@example.com Β· Free Β· 0 memoriesTry saying "save this" at the end of a conversation, or "what was I working on?" at the start of a new one.
Other ways to install
<details> <summary><b>I already have Node.js</b></summary>npm install -g purmemo-mcp && purmemoOr, run it once without installing globally:
npx purmemo-mcp@latest initOpen Claude Desktop β Settings β Developer β Edit Config and add:
{
"mcpServers": {
"purmemo": {
"url": "https://mcp.purmemo.ai/mcp/messages",
"transport": "streamable-http"
}
}
}Restart Claude Desktop. You'll be prompted to sign in via OAuth on first use.
</details> <details> <summary><b>Claude Desktop β local (advanced)</b></summary>Get your API key from app.purmemo.ai β Settings β API Keys, then edit:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"purmemo": {
"command": "npx",
"args": ["-y", "purmemo-mcp"],
"env": { "PURMEMO_API_KEY": "your-api-key-here" }
}
}
}Restart Claude Desktop after saving.
</details> <details> <summary><b>Cursor / Windsurf / Zed</b></summary>Cursor β edit ~/.cursor/mcp.json:
{ "mcpServers": { "purmemo": { "command": "npx", "args": ["-y", "purmemo-mcp"], "env": { "PURMEMO_API_KEY": "your-api-key" } } } }Windsurf β edit ~/.codeium/windsurf/mcp_config.json (same shape as above).
Zed β edit ~/.config/zed/settings.json, add under context_servers:
{ "context_servers": { "purmemo": { "command": { "path": "npx", "args": ["-y", "purmemo-mcp"], "env": { "PURMEMO_API_KEY": "your-api-key" } } } } }No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.