5-minute quickstart
Install the Python SDK and make your first search call.
Core concepts
Organizations, projects, environments, and folders.
API reference
The full REST API — 10 endpoints.
Python SDK
The
memic package on PyPI.What Memic unifies
- Unstructured context — PDFs, Office docs, web pages, Markdown. Chunked, embedded, and semantically searchable.
- Structured context — rows from connectors (Google Drive, Notion, S3, custom sources). Queryable alongside your documents.
- Managed prompts — system prompts and templates stored in the dashboard, versioned, editable without a redeploy.
- Multi-tenancy by design — each API key is locked to exactly one environment, so your agents never accidentally read a different customer’s context.
Why not just glue it together yourself?
Without a unified layer, a typical agent stack ends up touching:prompts.pywith hardcoded system prompts- Pinecone or Weaviate for vector search over docs
- A separate indexer job that keeps vectors fresh as files change
- Another system for structured data from Postgres / Notion / Salesforce
- Glue code handling retries, pagination, auth, and errors
- A tenancy layer you build yourself if customers need isolation
client.search(query), client.prompts.get("planner-system"), or
client.files.upload(...) — the underlying storage, retrieval, tenancy,
and versioning is handled.
The shape of the API
org_id, no project_id, no environment_slug in the URL. Your API
key already knows. Swap the key, swap the environment — your code doesn’t
change.
Who Memic is for
- Teams building AI agents that pull context from multiple sources — documents, databases, managed prompts — and don’t want to stitch three different systems together
- Developers running agents from the OpenClaw / MCP ecosystem who need per-agent context isolation and versioned prompts
- Platforms embedding RAG or agent features into their own products, where each customer’s context must stay isolated from every other customer’s
Ready to try it?
Start with the Python quickstart
Install, authenticate, upload a file, and search — in five minutes.