Docs / Quick Start
Quick Start
Get your first agent connected to Kioku in under 5 minutes.
1
Create an account
Sign up at kioku.dev/signup. You'll get two keys:
- • Organization Key (mk_org_...) — for agents connecting via MCP/REST
- • Admin Key (mk_admin_...) — for the management console
2
Connect an agent via MCP
Add Kioku as an MCP server in your agent's configuration:
{
"mcpServers": {
"kioku": {
"url": "https://api.kioku.dev/mcp/sse",
"headers": {
"X-API-Key": "mk_org_YOUR_KEY_HERE"
}
}
}
}Your agent will auto-register on first connection and get access to memory tools.
3
Or use the REST API
Store a memory:
curl -X POST https://api.kioku.dev/v1/memories \
-H "X-API-Key: mk_org_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"content": "The deployment pipeline uses GitHub Actions",
"memory_type": "fact",
"source_type": "agent",
"scope": "fleet"
}'Search memories:
curl "https://api.kioku.dev/v1/memories/search?q=deployment+pipeline&limit=5" \ -H "X-API-Key: mk_org_YOUR_KEY_HERE"
4
Open the Console
Go to kioku.dev/console and log in with the email and password you used during signup. You'll see your agents, memories, fleets, and full audit trail.
NanoClaw Integration
If you're using NanoClaw for your agent fleet, add these to your .env:
KIOKU_URL=https://api.kioku.dev KIOKU_ORG_KEY=mk_org_YOUR_KEY_HERE
NanoClaw agents will auto-register and start sharing memories across the fleet.