Documentation

Connect REMBR to all your AI tools in minutes using the Model Context Protocol

Quick Start

Installation

Install REMBR via npm or use directly via HTTP

NPM Package (Recommended)

npm install @rembr/client

The npm package handles authentication automatically and provides the best experience.

Configuration

Basic Setup (Auto OAuth)

Simplest configuration - works with most MCP clients

1

Add to MCP Configuration

Add this to your MCP client's configuration file:

{
  "rembr": {
    "url": "https://rembr.ai/mcp",
    "type": "http"
  }
}

That's it! REMBR will handle OAuth authentication automatically when you first connect.

API Key Authentication

For clients that don't support OAuth or programmatic access

1

Get Your API Key

  1. Go to API Keys in your dashboard
  2. Click "Create Key" and copy your API key
2

Configure with API Key

Add your API key to the configuration:

{
  "rembr": {
    "url": "https://rembr.ai/mcp",
    "headers": {
      "x-api-key": "your-api-key-here",
      "Accept": "application/json, text/event-stream"
    },
    "type": "http"
  }
}

Manual OAuth Configuration

For clients that require explicit OAuth credentials

1

Create an OAuth App

  1. Go to OAuth Apps in your dashboard
  2. Click "New OAuth App"
  3. Enter a name (e.g., "Claude Desktop")
  4. Add redirect URI: http://127.0.0.1
  5. Save the Client ID and Client Secret
2

Use OAuth Credentials

Configure your MCP client with the OAuth credentials from step 1. The exact configuration depends on your client.

Note: Most clients don't need this - auto OAuth (basic setup above) is usually sufficient.

How It Works

Using Memories in Chat

REMBR works seamlessly through natural conversation

Storing Memories

Simply chat naturally! When you share important information, ask the AI to remember it:

You:

"I prefer using TypeScript for all new projects. Please remember this."

AI:

✓ I've stored that preference in your memories.

Retrieving Memories

The AI automatically recalls relevant memories based on your conversation context:

You:

"Let's start a new project"

AI:

Based on your preferences, I'll set up a TypeScript project...

Categories

  • facts: Factual information
  • preferences: User preferences and settings
  • conversations: Important context from conversations
  • projects: Project-specific information
  • learning: Things to remember for later

Team Collaboration

Share memories with your team. Everyone on your account can access and contribute to the shared memory pool.