Documentation
Quickstart
From zero to your first write/recall. This is the v0 of the docs — the structure grows with the product.
1 · Get the installation kit
The installation kit ships with your Memyx license. Don’t have one yet?
Let’s talk2 · Configure and deploy
Fill in your client descriptor (domain, keys, sizing) and run the parameterized installer: it brings up the stack (Postgres/pgvector, Redis, API and gateway), runs migrations and a smoke test.
cp deploy/clients/_template.env deploy/clients/my-client.env
# fill in the descriptor (domain, keys, sizing)
deploy/install.sh my-client 3 · Connect an MCP client
Add Memyx to your MCP client (Claude, IDEs, agents). The gateway routes /mcp and validates the per-tenant API key.
{
"mcpServers": {
"memyx": {
"type": "http",
"url": "https://memyx.your-company.com/mcp",
"headers": { "X-API-Key": "mc_your_key" }
}
}
} 4 · First write/recall with the SDK
Install the SDK and point it at your deployment. Write a memory and recall governed context.
from memyx_client import Memyx
mc = Memyx("mc_xxx", tenant_id="my-team", agent_id="agent-1",
base_url="https://memyx.your-company.com")
mc.write("Q3 revenue target is $4M.")
print(mc.recall("Q3 target").summary) What’s next?
For per-agent credentials, scopes and the full API surface, reach out — extended documentation is in the works.
Request a demo