Quickstart
Get up and running with Remem in 4 steps.Prerequisites
- A running Remem instance (local or hosted)
curlor any HTTP client
Sign Up (Public)
Create your tenant and receive your first API key in a single call.Response:
This endpoint returns both
tenant_id and api_key in a single response. The tenant_id identifies your isolated workspace, and the api_key authenticates all future requests.Ingest a Document
Upload your first document to Remem. Documents can be ingested via JSON body or multipart file upload.JSON body example:Response:Multipart file upload alternative:
Ingestion is asynchronous. The document is queued for processing and won’t be immediately searchable. Behind the scenes, Remem encrypts the content, chunks it into semantic units, generates embeddings, and classifies it using AI. Most documents are searchable within 5-15 seconds.
Query Your Context
Retrieve relevant context using Remem’s query API. You can choose between Fast mode (optimized for speed, Response:Response:
<100ms) or Rich mode (includes AI synthesis, <2s).Fast Mode
Returns raw chunks ranked by semantic similarity. Best for latency-sensitive use cases or when you want to process results yourself.Rich Mode
Includes AI-generated synthesis that answers your query in natural language. Best for end-user applications or agent workflows.Fast mode returns results in
<100ms and is ideal for autocomplete, background context retrieval, or when you want to handle synthesis yourself. Rich mode adds AI-powered synthesis and takes ~1-2s, making it perfect for chatbots, Q&A interfaces, or when you want a human-readable answer.Explore Further
Now that you’ve seen the basics, dive deeper into Remem’s capabilities:
- Documents & Ingestion — Learn about supported formats, metadata, chunking strategies, and batch ingestion.
- Querying — Explore filtering, sensitivity scoping, reranking, and advanced query options.
- Data Lifecycle — Understand how documents are processed, updated, archived, and deleted.
- MCP Integration — Connect Remem to Claude Desktop or other MCP-compatible tools for seamless context injection.
- Authentication — Manage API keys, understand sensitivity levels, and configure tenant settings.
Next Steps
- Set up continuous ingestion from Slack, Google Drive, or Notion
- Configure sensitivity scoping to control what data is surfaced in different contexts
- Integrate Remem with your LLM application or agent framework
- Explore the MCP server for Claude Desktop integration