Integrations

Connect in 30 seconds.

REM Labs works with every AI tool you already use. Pick your setup and go.

🖥
Claude Desktop & Claude Code
Add persistent memory to every Claude session. Your AI remembers across conversations.
1 Copy this config to ~/.claude/mcp.json
2 Restart Claude Desktop — memory is live
{
  "mcpServers": {
    "slopshop": {
      "command": "npx",
      "args": ["-y", "@slopshop/mcp-server"],
      "env": { "SLOP_KEY": "your-key-here" }
    }
  }
}
Cursor & Windsurf
Persistent memory in your IDE. Your coding agent remembers every project decision.
1 Open Cursor settings → MCP
2 Paste the config below and save
{
  "mcpServers": {
    "slopshop": {
      "command": "npx",
      "args": ["-y", "@slopshop/mcp-server"],
      "env": { "SLOP_KEY": "your-key-here" }
    }
  }
}
💬
ChatGPT Custom GPT
Give your Custom GPT a long-term memory that actually persists.
1 In GPT builder, add this system prompt
2 Set your API key as a variable in GPT settings
You have access to persistent memory via
the REM Labs API. Before responding,
retrieve relevant memories with:

GET https://remlabs.ai/v1/memory/search
  ?q={topic}&key=SLOP_KEY

After responding, store key facts with:

POST https://remlabs.ai/v1/memory/store
Slack & Microsoft Teams
Receive your Morning Brief in your team channel every morning.
1 Create an incoming webhook in Slack or Teams
2 Add the webhook URL to your REM account settings
POST https://remlabs.ai/v1/memory/briefing/webhook

{
  "webhook_url": "https://hooks.slack.com/..."
}
🔖
Browser Bookmarklet
Save any webpage to your REM memory with one click.
1 Drag the button below to your bookmarks bar
2 Click it on any page to save it to your memory
🔖 Save to REM
Drag to bookmarks bar — replace YOUR_KEY after
javascript:(function(){
  fetch('https://remlabs.ai/v1/memory/store',{
    method:'POST',
    headers:{
      'Authorization':'Bearer YOUR_KEY',
      'Content-Type':'application/json'
    },
    body:JSON.stringify({
      content:document.title+': '+
        document.body.innerText.slice(0,2000)
    })
  });
  alert('Saved to REM!');
})();
Zapier & Make (formerly Integromat)
Automate memory storage from 5,000+ apps. Store emails, calendar events, anything.
1 Add a Webhooks by Zapier action to your Zap
2 Point it to the Store Memory endpoint below
POST https://remlabs.ai/v1/memory/store
Authorization: Bearer YOUR_KEY

{
  "content": "{{data from trigger}}"
}
🤖
Grok, Perplexity & Others
Add memory to any AI with REST API support. Store and retrieve with any model.
1 Use these REST endpoints in your AI's tool config
2 Store and retrieve memories with any model
Store a memory
curl -X POST \
  https://remlabs.ai/v1/memory/store \
  -H "Authorization: Bearer $SLOP_KEY" \
  -d '{"content":"..."}'
Search memories
📱
iOS & Android Shortcut
Store memories from your phone with Siri Shortcuts or Android Quick Settings.
1 Create an HTTP shortcut calling the store endpoint
2 Add the shortcut to your home screen for one-tap saving
POST https://remlabs.ai/v1/memory/store

Headers:
  Authorization: Bearer YOUR_KEY
  Content-Type: application/json

Body:
  { "content": "your note here" }

One API key. Every AI.

Free forever. Works with any model.