Documentation
AugmentationAI is a managed memory substrate. Your assistant talks to it over MCP (Model Context Protocol) — one endpoint, bearer-token auth, JSON-RPC 2.0.
Start free — 14 days, no cardQuickstart
1. Create your substrate
Sign up and buy the plan (mock checkout during beta). Your substrate provisions in seconds — one database per customer, yours alone.
2. Connect your assistant
Any MCP client works. For Claude:
claude mcp add augmentationai --transport http https://augmentationai.com/mcp \
--header "Authorization: Bearer augpat_YOUR_KEY"
3. Just talk
Memories write and recall automatically. No SDK, nothing to install.
API reference
Single endpoint, JSON-RPC 2.0 over HTTPS:
POST https://augmentationai.com/mcp
Authorization: Bearer augpat_YOUR_KEY
Content-Type: application/json
| Method | Params | Returns |
|---|---|---|
memory_write | namespace, content | node id, accepted |
memory_query | query, k (default 5) | ranked nodes with scores |
Write a memory
curl -X POST https://augmentationai.com/mcp \
-H "Authorization: Bearer augpat_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"memory_write",
"params":{"namespace":"projects.law",
"content":"Meridian v Zeta hearing set for Oct 14"}}'
Query it back
curl -X POST https://augmentationai.com/mcp \
-H "Authorization: Bearer augpat_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"memory_query",
"params":{"query":"when is the Meridian hearing","k":5}}'
Namespaces
Dot-separated hierarchy: projects.law.cases, personal.health, taste.music. The dashboard wiki, graph, git and files tabs are all derived from your namespaces — write once, every view follows.
The portal
Dashboard usage, keys, playground, activity
Wiki hierarchical notes over your store
Graph 3D substrate browser
Git every write auto-commits — full history of your memory
Files nodes tagged [file: name.ext]
Export & deletion
GET /wiki/export.ndjson (from the dashboard) downloads your entire store as NDJSON — the ingest contract, six fields per line. Deletion keeps your store for 30 days (recoverable), then purges permanently. One database per customer. Nothing is shared, nothing is trained on.
Limits & plan
~5GB store · 14-day free trial · $19.99/mo after · no card at signup. Rate limits apply per key.
FAQ
Which assistants work?
Any MCP client over HTTPS: Claude, Cursor, custom agents.
Where does my data live?
Your own database on our substrate host. No shared tables, no cross-tenant anything.
Can I leave?
Any time — NDJSON export is the whole store, and 30-day recoverable deletion is honored by policy.
augmentation