Skip to content

Releases: Zizka-ai/ZizkaDB

v0.2.3 — Cloud logging fixes, legacy keys, SDK/MCP 0.2.3/0.1.3

08 Jun 14:55
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

Packages published

  • PyPI zizkadb-sdk 0.2.3
  • PyPI zizkadb-mcp 0.1.3
  • npm zizkadb-sdk 0.2.3

Fixes

  • MCP and SDK require API key on cloud (no silent 401s)
  • Legacy agdb_live_... keys and AGENTDB_API_KEY env alias still supported
  • Dashboard Send test event + shared write_event path
  • Event writes no longer fail when Qdrant/embeddings are down
  • Admin + tenant dashboards poll every 10s

Upgrade

pip install -U zizkadb-sdk zizkadb-mcp
npm install zizkadb-sdk@0.2.3

MCP: set ZIZKADB_API_KEY in your Cursor config (signup → Settings → Create API key).

v0.2.1 — Initial public release

30 May 15:21
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

ZizkaDB v0.2.1 — Initial public release

The operational database for AI agents — causal lineage, time-travel over logged state, semantic search, and fleet intelligence.

Install

pip install zizkadb-sdk
from zizkadb import ZizkaDB

db = ZizkaDB("your-api-key")  # or host="http://localhost:8000" for self-hosted
await db.log(agent="my-bot", event="tool_call", data={"tool": "search"})
print(await db.why("my-bot"))

What's included

  • Core API — FastAPI backend with Postgres + pgvector, Qdrant, Redis
  • Dashboard — Next.js UI at db.zizka.ai
  • Python SDK (zizkadb-sdk 0.2.1) — pip install
  • TypeScript SDK (zizkadb-sdk 0.2.1) — npm
  • MCP server (zizkadb-mcp 0.1.1) — Cursor / Claude integration
  • Self-host — Docker Compose, no signup required
  • Managed cloud — sign up at db.zizka.ai, get an API key
  • Docsdb.zizka.ai/docs
  • Technical referencedb.zizka.ai/trust

Self-host

git clone https://github.com/Zizka-ai/ZizkaDB
cd ZizkaDB
cp .env.example infra/.env
docker compose -f infra/docker-compose.yml up -d

License

AGPL-3.0