purmemo-mcp

coladapo/purmemo-mcp

3.3

If you are the rightful owner of purmemo-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

Purmemo MCP Server is an official Model Context Protocol server designed to enhance memory retrieval and management using AI technology.

Tools
5
Resources
0
Prompts
0

pūrmemo MCP Server

npm version npm downloads Tests License: MIT MCP Compatible

MCP server for pūrmemo — AI conversation memory that works everywhere. Save and recall conversations across Claude Desktop, Cursor, Windsurf, and other MCP-compatible platforms.

Using ChatGPT, Claude.ai, or Gemini in browser? Get the Chrome Extension instead.

🚀 Quick Start

1. Get Your API Key

  1. Sign up for free at app.purmemo.ai
  2. Go to Settings → API Keys
  3. Create a new API key

2. Add to Your Platform

Claude.ai Connectors UI (Easiest — 30 seconds)

The fastest way to get started! No config files needed:

  1. Go to claude.ai → Settings → Connectors
  2. Click "Add Connector" → "Add custom MCP server"
  3. Paste this URL:
    https://mcp.purmemo.ai/mcp/messages
    
  4. Click "Add" and authenticate with your pūrmemo account

That's it! Works on web and mobile.

Claude Desktop (Remote MCP)

Use pūrmemo's hosted MCP server with OAuth authentication:

  1. Open Claude Desktop → Settings → Developer → Edit Config
  2. Add this configuration:
{
  "mcpServers": {
    "purmemo": {
      "type": "http",
      "url": "https://mcp.purmemo.ai/mcp/messages"
    }
  }
}
  1. Restart Claude Desktop
  2. You'll be prompted to authenticate via OAuth
Claude Desktop (Local NPX)

Run pūrmemo locally via 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"
      }
    }
  }
}
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 ~/.windsurf/mcp.json (macOS) or %USERPROFILE%\.windsurf\mcp.json (Windows):

{
  "mcpServers": {
    "purmemo": {
      "command": "npx",
      "args": ["-y", "purmemo-mcp"],
      "env": {
        "PURMEMO_API_KEY": "your-api-key-here"
      }
    }
  }
}
Zed Editor

Edit ~/.config/zed/mcp.json:

{
  "mcpServers": {
    "purmemo": {
      "command": "npx",
      "args": ["-y", "purmemo-mcp"],
      "env": {
        "PURMEMO_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Start Using

You: "Save this conversation"
Claude: ✅ Saved! Title: "React Hooks Discussion"

You: "What did we discuss about authentication last week?"
Claude: "Based on your memories: You decided to use JWT tokens with..."

🛠️ Tools

ToolDescription
save_conversationSave conversations with smart titles and context extraction
recall_memoriesSearch memories with natural language
get_memory_detailsGet full details of a specific memory
discover_related_conversationsFind related discussions across platforms

✨ Features

  • Smart Titles — Auto-generates meaningful titles (no timestamps)
  • Living Documents — Update existing memories instead of duplicating
  • 100K+ Characters — Auto-chunks long conversations
  • Cross-Platform Sync — All memories sync to app.purmemo.ai

📝 Living Document Pattern

Save and update the same conversation over time:

You: "Save as conversation project-planning"
Claude: ✅ Saved with ID: project-planning

[... continue working ...]

You: "Update conversation project-planning"
Claude: ✅ Updated! (not duplicated)

💰 Pricing

PlanPriceRecallsSaves
Free$0100/monthUnlimited
Pro$9/month1,000/monthUnlimited

🔗 Links

🔐 Privacy

pūrmemo stores your conversation memories securely. Your data is:

  • Encrypted in transit (HTTPS) and at rest
  • Never shared with third parties
  • Accessible only to you via your API key

See our Privacy Policy for details.

📄 License

MIT