StudioMeyer Memory, as an API
A memory backend for AI agents, apps, and automations. Store facts, search semantically, build knowledge graphs, import your ChatGPT, Claude and Gemini history. Your LLM provider stays your choice, we only ship the memory. Live at memory.studiomeyer.io. REST + MCP, EU hosting, GDPR-compliant.
curl -X POST https://memory.studiomeyer.io/api/search \
-H "Authorization: Bearer sm_live_xxx" \
-H "Content-Type: application/json" \
-d '{"query": "what do we know about Q1 sales", "limit": 10}'What this actually is
An HTTP API that gives your AI agent long-term memory. No RAG pipeline to build, no vector DB to host, no embedding pipeline to maintain. POST JSON to /api/learn, /api/search, /api/entity, we store, index and link. The same key works as an MCP endpoint for Claude Desktop, Cursor and Codex. Your LLM stays your LLM.
Quick Start
Integrated in 3 steps
Create Account
Enter your email, click the magic link, receive your API key. 200 free calls for testing, unlimited memory reads.
Build Memory
POST /api/learn for facts, POST /api/decide for decisions, POST /api/entity for knowledge graphs. Or POST /api/import with a ChatGPT export, we parse and structure it.
Query
POST /api/search with a question. Semantic + full-text + knowledge graph in one call. Or connect Claude Desktop via MCP and your agent has instant access.
Code Examples
Integrate instantly
curl -X POST https://memory.studiomeyer.io/api/search \
-H "Authorization: Bearer sm_live_xxx" \
-H "Content-Type: application/json" \
-d '{"query": "what do we know about Q1 sales", "limit": 10}'Authentication & Limits
Auth & Rate Limits
Authentication
- Bearer token in the Authorization header, no API keys in query params.
- One key works for REST and the MCP Protocol. Claude Desktop, Cursor and custom HTTP clients all accept the same key.
Authorization: Bearer sm_live_xxxRate Limits by Plan
| Plan | Requests/min |
|---|---|
| Free (trial) | 10 |
| Pro (€19/mo) | 60 |
| Team (€39/mo) | 200 |
| Scale ($99/mo) | 500 |