Markdown Edit

Supermemory

Supermemory is an open-source "second brain" and memory engine designed to provide AI agents and human users with persistent context across applications. It connects diverse information sources (such as bookmarks, browser history, Google Drive, Notion, Slack, and GitHub) and synthesizes them into an intelligent context layer accessible via the Model Context Protocol (MCP), REST APIs, and client extensions.

graph LR
    subgraph "External Integrations"
        Web[Browser / Bookmarks]
        Docs[Notion / Google Drive]
        Chat[Slack / GitHub]
    end

    Web & Docs & Chat --> Ingestion[Supermemory Sync Engine]
    Ingestion --> KG[Knowledge Graph & Vector Index]
    KG --> MCP[Supermemory MCP Server]
    MCP --> Agent[AI Agent / Claude / ChatGPT / Cursor]

Key Characteristics

Quickstart via MCP

Configure Supermemory in your MCP client settings:

{
  "mcpServers": {
    "supermemory": {
      "command": "npx",
      "args": ["-y", "@supermemory/mcp-server"],
      "env": {
        "SUPERMEMORY_API_KEY": "your-api-key"
      }
    }
  }
}