purmemo
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 MCP Server
Claude knows who you are before you say a word.
pūrmemo gives your AI a persistent memory and identity layer — your role, expertise, active projects, and conversation history — available instantly in every session, across every platform.
Using ChatGPT, Claude.ai, or Gemini in browser? Get the Chrome Extension instead.
What It Does
- Remembers everything — save conversations, decisions, and context; search them later with natural language
- Knows who you are — your role, expertise, tools, and active projects load automatically at session start
- Works everywhere — Claude Code, Claude Desktop, Cursor, Windsurf, Zed, and any MCP-compatible platform
Quick Start
1. Get Your API Key
- Sign up for free at app.purmemo.ai
- Go to Settings → API Keys
- Create a new API key
2. Add to Your Platform
Claude Code (Terminal)
One command:
claude mcp add purmemo -e PURMEMO_API_KEY=your-api-key-here -- npx -y purmemo-mcp
Verify it connected:
claude mcp list
# purmemo: npx -y purmemo-mcp - ✓ Connected
Optional: Add slash commands for /save, /recall, and /context:
mkdir -p ~/.claude/commands
curl -s https://raw.githubusercontent.com/purmemo-ai/purmemo-mcp/main/.claude/commands/save.md -o ~/.claude/commands/save.md
curl -s https://raw.githubusercontent.com/purmemo-ai/purmemo-mcp/main/.claude/commands/recall.md -o ~/.claude/commands/recall.md
curl -s https://raw.githubusercontent.com/purmemo-ai/purmemo-mcp/main/.claude/commands/context.md -o ~/.claude/commands/context.md
Then restart Claude Code and use /save, /recall [topic], and /context in any session.
Claude Desktop (Remote MCP — Recommended)
Use pūrmemo's hosted MCP server — no API key setup required, authenticates via OAuth:
- Open Claude Desktop → Settings → Developer → Edit Config
- Add this configuration:
{
"mcpServers": {
"purmemo": {
"url": "https://mcp.purmemo.ai/mcp/messages",
"transport": "streamable-http"
}
}
}
- Restart Claude Desktop
- You'll be prompted to sign in via OAuth
Claude Desktop (Local NPX)
Edit your config file:
- 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.
Cursor IDE
Edit ~/.cursor/mcp.json (macOS) or %USERPROFILE%\.cursor\mcp.json (Windows):
{
"mcpServers": {
"purmemo": {
"command": "npx",
"args": ["-y", "purmemo-mcp"],
"env": {
"PURMEMO_API_KEY": "your-api-key-here"
}
}
}
}
Windsurf IDE
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"purmemo": {
"command": "npx",
"args": ["-y", "purmemo-mcp"],
"env": {
"PURMEMO_API_KEY": "your-api-key-here"
}
}
}
}
Zed Editor
Add to ~/.config/zed/settings.json under the context_servers key:
{
"context_servers": {
"purmemo": {
"command": {
"path": "npx",
"args": ["-y", "purmemo-mcp"],
"env": {
"PURMEMO_API_KEY": "your-api-key-here"
}
}
}
}
}
3. Start Using
You: "What's the project status?"
Claude: Based on your identity and recent memories:
You're a founder working on a B2B SaaS product.
Recent work: pūrmemo (15 sessions), auth refactor (3 sessions)
Last session: "Fixed JWT refresh token rotation"
What You Get
Resources (attach to any conversation via the + button)
| Resource | What it contains |
|---|---|
memory://me | Your identity: role, expertise, tools, active projects, what you're working on |
memory://context | Your 5 most recent conversation summaries |
memory://projects | All projects you've saved memories about, grouped and sorted by recency |
memory://{id} | Full content of any specific memory by ID |
Example — attach memory://me at session start:
You are working with:
**Chris** — Founder, B2B SaaS
Expertise: product, fullstack, ai
Tools: cursor, claude, supabase
Style: systems thinker
Recent work:
- pūrmemo (15 recent sessions)
- auth-refactor (4 recent sessions)
Working on: MCP Resources + Prompts feature
No re-explaining who you are. No repeating your stack. Just continue.
Prompts (conversation starters in the + menu)
| Prompt | What it does |
|---|---|
load-context | Load your full identity and recent memories to start a session |
save-this-conversation | Save the current conversation as a living document |
catch-me-up | Get a summary of recent work across all projects |
weekly-review | Review the week's progress and plan what's next |
Tools
Core
| Tool | Description |
|---|---|
save_conversation | Save conversations with smart titles and context extraction |
recall_memories | Search memories with natural language |
get_memory_details | Get full details of a specific memory |
discover_related_conversations | Find related discussions across platforms |
get_user_context | Load your identity profile and recent work context |
Workflows
| Tool | Description |
|---|---|
run_workflow | Run structured workflows (PRD, debug, sprint, deploy, etc.) |
list_workflows | List all available workflows by category |
Community
| Tool | Description |
|---|---|
share_memory | Set memory visibility (private, unlisted, or public) |
recall_public | Search public community memories (free for all tiers) |
get_public_memory | Get the full content of a shared memory |
report_memory | Report inappropriate public content |
get_user_context in action:
You: "What have I been working on?"
Claude: [calls get_user_context]
Your profile: Founder · B2B SaaS · fullstack/ai/product
Active projects:
• pūrmemo — "MCP server resources and prompts" (15 sessions)
• auth-refactor — "JWT refresh token fix" (4 sessions)
Working on: MCP Resources + Prompts feature
Identity Layer
pūrmemo maintains a cognitive fingerprint — a persistent profile of who you are that loads automatically into every session.
Set it once at app.purmemo.ai → Settings → Identity:
- Role — founder, engineer, designer, researcher, ...
- Domain — your primary field (B2B SaaS, ML research, design systems, ...)
- Expertise — your key skills (product, fullstack, ai, ...)
- Tools — what you work with (cursor, claude, supabase, ...)
- Work style — how you think (systems thinker, iterative builder, ...)
- Working on — your current focus, updated per session
Once set, every new session inherits this context. Claude already knows your background, your stack, and what you were doing last time — without you having to explain it.
Slash Commands (Claude Code)
After installing the slash commands (see Claude Code setup above):
| Command | What it does |
|---|---|
/save | Save the current conversation as a living document memory |
/recall [topic] | Search past memories by topic |
/context | Session startup — loads your identity + recent work |
The /context command is especially useful at the start of a session: it calls get_user_context and surfaces your identity and recent work so Claude already knows where you left off.
Living Document Pattern
Same title = update, not duplicate. Build on memory over time:
You: "Save this as auth-refactor"
Claude: ✅ Saved — "auth-refactor" (new)
[... continue working across multiple sessions ...]
You: "Save as auth-refactor"
Claude: ✅ Updated — "auth-refactor" (3 updates, not 3 copies)
Long conversations? Auto-chunked at 100K+ characters and reassembled on recall.
Pricing
| Plan | Price | Recalls | Saves |
|---|---|---|---|
| Free | $0 | 50/month | Unlimited |
| Pro | $19/month | Unlimited | Unlimited |
Links
- Dashboard — View and manage memories
- Chrome Extension — For ChatGPT, Claude.ai, Gemini
- Documentation
- Support
Privacy
Your data is encrypted in transit (HTTPS) and at rest. It is never shared with third parties and is accessible only to you via your API key.
See our Privacy Policy for details.
License
This MCP client package is MIT licensed — you can use, fork, and modify it freely.
The pūrmemo platform, API, and backend are proprietary and closed-source. MIT applies only to the connector code in this repository, not to the service it connects to.
Servidores relacionados
Windows Control
Programmatic control over Windows system operations including mouse, keyboard, window management, and screen capture using nut.js.
Rememberizer Common Knowledge
Access personal and team knowledge repositories, including documents and Slack discussions.
Issuebage MCP Server
digital badge issuing platform
iTerm MCP
Provides access to your iTerm session, requiring iTerm2 and Node.js.
sharepoint-mcp
The MCP Server that gives your AI agent a brain for Microsoft SharePoint
Google Calendar
Integrates with Google Calendar to manage events and generate calendar insights.
freispace MCP Server
Query freispace for resource scheduling and project planning data
Speak AI MCP
Connect Claude, ChatGPT, and other AI assistants to your Speak AI workspace. Transcribe meetings, analyze media, extract insights, all through natural conversation.
SlideSpeak
Create and automate PowerPoint presentations and slide decks using the SlideSpeak API. Requires an API key.
monday.com MCP
An open framework to connect AI agents into your monday.com work OS, giving them secure access to data and tools to take action.