
Your agent remembers. Secured by its wallet.
Humans welcome to set things up.
Semantic memory. One API. Any agent.
npx memdata-mcp + API key → done# Ingest
curl -X POST https://memdata.ai/api/memdata/ingest \
-H "Authorization: Bearer md_your_key" \
-F "file=@meeting-notes.pdf"
# Query
curl -X POST https://memdata.ai/api/memdata/query \
-H "Authorization: Bearer md_your_key" \
-d '{"query": "what did we decide about pricing"}'EXPLORE YOUR SEMANTIC MEMORY
Hover to discover connections in your data
Drop in files, get searchable memory. Access it anywhere.
PDFs, images, screenshots, audio, text. We handle OCR and transcription automatically.
Your files get chunked, embedded, and indexed. No config. No tuning. It just works.
Get relevant context back with source citations. No SQL. No filters.
WHY MEMDATA
Pinecone gives you a database. We give you memory.
| Feature | Pinecone | Mem0 | MemData |
|---|---|---|---|
| Upload any file | ✗ | ✗ | ✓ |
| OCR (images/PDFs) | ✗ | ✗ | ✓ |
| Audio transcription | ✗ | ✗ | ✓ |
| Auto-chunking | ✗ | ✓ | ✓ |
| Auto-embedding | ✗ | ✓ | ✓ |
| MCP server | ✗ | ✗ | ✓ |
| Query API | ✓ | ✓ | ✓ |
WITHOUT MEMDATA
> What did we decide about pricing last week?
"I don't have access to your previous conversations or documents. Could you share the relevant notes or context?"
WITH MEMDATA
> What did we decide about pricing last week?
$29/mo for Pro tier
Based on your meeting notes from Jan 22, you decided to simplify to two tiers: Free (500 docs) and Pro ($29/mo, 25K docs).
BUILT FOR BUILDERS
Your Claude or GPT remembers every conversation, note, and doc you've shared. "What did I decide about pricing last week?"
Upload 50 PDFs. Ask questions across all of them. No more digging through folders.
Ramble into your phone. We transcribe, chunk, and index. Find that idea you had on your walk last Tuesday.
Your n8n/Make workflows remember past runs. "What happened last time we processed this vendor?"
MCP server for AI tools. REST API for everything else.
MCP SERVER
For Claude, Cursor, and AI tools
{
"mcpServers": {
"memdata": {
"command": "npx",
"args": ["memdata-mcp"],
"env": {
"MEMDATA_API_KEY": "md_..."
}
}
}
}REST API
For your app or scripts
import { MemData } from 'memdata';
const mem = new MemData({ apiKey: 'md_...' });
// Ingest a file
await mem.ingest({ file: buffer, name: 'notes.pdf' });
// Query
const results = await mem.query('Q3 revenue?');No credit card required. Upgrade when you need to.
Try it out
Build something real
Production ready
Encrypted
TLS 1.3 in transit. AES-256 at rest.
Isolated
Data isolated per account. Delete anytime via API.
Not trained on
We don't train on your data. We don't sell it.
Memory infrastructure for AI agents. Upload files, screenshots, audio—we handle OCR, transcription, chunking, and embeddings. Query with natural language, get relevant context back.
They give you a database. We give you the whole pipeline. No chunking code, no embedding calls, no OCR setup. Drop a file in, search it.
PDFs, images (PNG, JPG), audio (MP3, WAV, M4A), and text files. We automatically OCR images and transcribe audio.
No. Never. Your data is used only to generate embeddings and search results for your account.
Encrypted cloud storage and database. All US-based infrastructure. SOC 2 compliant providers.
Yes. Delete via API or dashboard. Purged within 24 hours.
Queries typically under 200ms. Ingestion depends on file size—PDFs take a few seconds, audio transcription takes longer.
Free tier: hard stop at 100 MB or 250 queries/mo. Upgrade to keep building.
Not yet. Open-source core is on the roadmap.
Yes. REST API + MCP support for Claude. Check the docs.