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)
The npm package handles authentication automatically and provides the best experience.
Configuration
Basic Setup (Auto OAuth)
Simplest configuration - works with most MCP clients
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
Get Your API Key
- Go to API Keys in your dashboard
- Click "Create Key" and copy your API key
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
Create an OAuth App
- Go to OAuth Apps in your dashboard
- Click "New OAuth App"
- Enter a name (e.g., "Claude Desktop")
- Add redirect URI:
http://127.0.0.1 - Save the Client ID and Client Secret
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.