Integrations

Connect neuromem to your favorite AI tools. One API key, universal MCP support.

OpenClaw

Featured

Deep behavioral memory plugin for OpenClaw agents — auto-recall, auto-capture, auto-digest.

Learn More

Claude Code

Add long-term memory to Claude Code with a single terminal command.

Claude Desktop

Connect Claude Desktop to neuromem via MCP config file.

Cursor

Give Cursor AI persistent memory across coding sessions.

Gemini CLI

Add neuromem memory to Google's Gemini CLI agent.

ChatGPT

Connect ChatGPT to neuromem via OAuth and MCP connectors.

Connect via MCP

Works with any MCP-compatible client. Get your API key from the dashboard and paste the config below.

Claude Code

claude mcp add --scope user --transport http neuromem \
  https://api.neuromem.cloud/mcp/ \
  --header "Authorization: Bearer nm_sk_..."

Claude Desktop

~/.config/claude/claude_desktop_config.json

{
  "mcpServers": {
    "neuromem": {
      "transport": "http",
      "url": "https://api.neuromem.cloud/mcp/",
      "headers": {
        "Authorization": "Bearer nm_sk_..."
      }
    }
  }
}

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "neuromem": {
      "transport": "http",
      "url": "https://api.neuromem.cloud/mcp/",
      "headers": {
        "Authorization": "Bearer nm_sk_..."
      }
    }
  }
}

Gemini CLI

~/.gemini/settings.json

{
  "mcpServers": {
    "neuromem": {
      "httpUrl": "https://api.neuromem.cloud/mcp/",
      "headers": {
        "Authorization": "Bearer nm_sk_..."
      }
    }
  }
}

ChatGPT

  1. Open ChatGPT Settings > Advanced > Enable Developer Mode
  2. Go to Connectors and add a new MCP Server with URL: https://api.neuromem.cloud/mcp/
  3. Choose OAuth as the authentication type
  4. Sign in with your Neuromem account when prompted