Integration Guides

Connect REMBR to your favorite AI tools

Claude Desktop

Anthropic's Claude Desktop App

Native MCP support with OAuth authentication

Claude Desktop has built-in MCP support, making integration seamless:

OAuth Flow: Secure browser-based authentication
Automatic Tool Discovery: All 41 MCP Tools appear automatically
Zero Configuration: Works out of the box
Configuration Example
{
  "mcpServers": {
    "rembr": {
      "url": "https://rembr.ai/mcp",
      "transport": "http",
      "auth": {
        "type": "oauth",
        "authUrl": "https://rembr.ai/oauth/authorize",
        "tokenUrl": "https://rembr.ai/api/oauth/token"
      }
    }
  }
}
💡 Usage Example

You: "Remember that I prefer TypeScript for new projects"

Claude: *Uses store_memory tool automatically*

You (later): "What language do I prefer?"

Claude: *Uses search_memory, finds preference*

VS Code / Cursor / Windsurf

Code Editors with GitHub Copilot

API key authentication for coding assistants

Use REMBR with GitHub Copilot in your favorite code editor:

API Key Auth: Simple setup with environment variables
Project-Scoped: Different keys for different projects
Coding Context: Remember architecture, patterns, decisions
MCP Settings Configuration
{
  "mcp": {
    "servers": {
      "rembr": {
        "command": "npx",
        "args": ["-y", "@rembr/mcp-client"],
        "env": {
          "REMBR_API_KEY": "rbk_your_api_key_here",
          "REMBR_PROJECT_ID": "project_id_optional"
        }
      }
    }
  }
}
💡 Best Practices

• Store API keys in .env files (never commit them!)

• Use separate projects for different codebases

• Ask Copilot to remember architecture decisions as you make them

• Use the patterns and decisions categories

Cline Extension

VS Code AI Agent Extension

MCP support for autonomous coding

Cline is an autonomous AI coding agent with native MCP support:

Autonomous Coding: AI agents that can edit files, run commands
MCP Integration: Uses REMBR automatically for context
Long-Running Tasks: Maintains context across sessions
Cline MCP Settings
{
  "cline.mcpServers": {
    "rembr": {
      "url": "https://rembr.ai/mcp",
      "headers": {
        "X-API-Key": "rbk_your_api_key_here"
      }
    }
  }
}
💡 RLM Use Case

Cline + REMBR = Perfect RLM setup:

• Cline decomposes tasks recursively

• REMBR stores findings from each subtask

• Sub-agents access shared context via snapshots

• Temporal queries debug complex decision chains

Custom Integrations

Build Your Own

Use REMBR's HTTP MCP endpoint

REMBR exposes a standard HTTP MCP endpoint at https://rembr.ai/mcp

Any MCP-compatible client can connect using:

  • OAuth 2.0 with PKCE (recommended for user-facing apps)
  • API keys with X-API-Key header
📚 Developer Resources
Ready to integrate?
Start with the Quick Start guide to set up authentication