MCP Integration
Remem provides a Model Context Protocol (MCP) server that lets AI agents query your context directly.Available Tools
| Tool | Description | Parameters |
|---|---|---|
remem_query | Query for relevant context | query (string), mode (fast/rich), max_results (int) |
remem_ingest | Ingest a new document | title (string), content (string), metadata (object) |
remem_search | Simple keyword search | q (string), limit (int) |
Claude Desktop Configuration
Add Remem to your Claude Desktopclaude_desktop_config.json:
Usage in Claude
Once configured, Claude can automatically use Remem tools:You: What did we discuss in last week’s planning meeting? Claude: Uses remem_query to search for meeting notes… Let me check your notes. Based on your planning meeting from January 15th, you discussed three priorities:
- Expand to EU markets
- Launch the mobile app by March
- Hire two more engineers
Environment Variables
| Variable | Required | Description |
|---|---|---|
REMEM_API_URL | Yes | Base URL of your Remem instance |
REMEM_API_KEY | Yes | API key with appropriate sensitivity scope |
REMEM_DEFAULT_MODE | No | Default query mode (fast or rich, defaults to fast) |
REMEM_MAX_RESULTS | No | Default max results (defaults to 10) |
Security
The MCP server runs locally and communicates with the Remem API using your API key. The key’s sensitivity scope controls which documents the agent can access — use apublic or internal scoped key if you want to limit what the agent can see.