zizkadb-mcp
MCP server for ZizkaDB. Gives any MCP-compatible AI agent persistent memory, semantic search, causal debugging, and time travel.
Setup (managed cloud)
- Sign up at db.zizka.ai
- Dashboard → Create agent (e.g.
cursor-agent) — copy the API key shown once - Paste the key into your MCP config (see below)
- Reload MCP in Cursor — use the same agent name in
log_eventcalls - Events appear on your dashboard within seconds
Agent name must match. If your key is for
cursor-agent, log withagent="cursor-agent". For many dynamic agent names, use a tenant-wide key (Settings).
Signup alone does not log events. You must create an agent + key and add it to
ZIZKADB_API_KEY.
Cursor — 30 second setup
Paste into ~/.cursor/mcp.json (or .cursor/mcp.json in your project), then reload MCP:
{
"mcpServers": {
"zizkadb": {
"command": "uvx",
"args": ["zizkadb-mcp"],
"env": { "ZIZKADB_API_KEY": "zizkadb_live_xxxx" }
}
}
}
Self-host: use the Self-hosted block below (ZIZKADB_HOST only — dev key auto-injected on localhost).
Prerequisite: install uv for uvx:
curl -LsSf https://astral.sh/uv/install.sh | sh
Install
pip install zizkadb-mcp
# or
uvx zizkadb-mcp
Self-hosted
{
"mcpServers": {
"zizkadb": {
"command": "uvx",
"args": ["zizkadb-mcp"],
"env": {
"ZIZKADB_HOST": "http://localhost:8000"
}
}
}
}
On localhost, the dev key (zizkadb_dev_local) is auto-injected — no API key needed. Must match DEV_API_KEY in infra/.env if you changed it.
Environment variables
| Variable | Default | Purpose |
|---|---|---|
ZIZKADB_HOST |
https://db.zizka.ai |
API base URL |
ZIZKADB_API_KEY |
— | Required on cloud. Your key from db.zizka.ai Settings |
AGENTDB_API_KEY |
— | Legacy alias for ZIZKADB_API_KEY |
AGENTDB_HOST |
— | Legacy alias for ZIZKADB_HOST |
ZIZKADB_TELEMETRY |
on | Set false to opt out (ping after first successful tool call) |
If ZIZKADB_API_KEY is missing on cloud, MCP tools return a clear error instead of silently failing.
Links
Release files for zizkadb-mcp 0.1.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zizkadb_mcp-0.1.5.tar.gz | 11.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zizkadb_mcp-0.1.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 19.4 kB
Release files / zizkadb_mcp-0.1.5.tar.gz
| Download URL | zizkadb_mcp-0.1.5.tar.gz |
|---|---|
| Size | 11.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b3305036885c46f1131fab7079be87aa8d1b8ff26615c9aa469b85c3eddc60fb
|
|
BLAKE2b-256 checksum How to use checksums |
4191345a5e70341d841a41ffd905bb1a0dd7cf9c640e383236501c25ed2b774e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.9
|
Release files / zizkadb_mcp-0.1.5-py3-none-any.whl
| Download URL | zizkadb_mcp-0.1.5-py3-none-any.whl |
|---|---|
| Size | 8.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
377979ed09710afe9764af8519a8c8ff8dbf6609abf1963371155e1e56023e63
|
|
BLAKE2b-256 checksum How to use checksums |
e67ee554bae1be003d2f9b6ba10a512011a9928372cd4c4105d602d1107d020f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.9
|