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:
{
"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"
}
}
}
}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:
{
"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"
}
}
}
}
}• 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:
{
"cline.mcpServers": {
"rembr": {
"url": "https://rembr.ai/mcp",
"headers": {
"X-API-Key": "rbk_your_api_key_here"
}
}
}
}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-Keyheader