Getting Started
What is Z3rno?
Z3rno is an open-source, PostgreSQL-based memory database purpose-built for AI agents. It gives your agents persistent, structured memory — the ability to store facts, recall context, track conversation history, and learn patterns across sessions — all with enterprise-grade multi-tenancy, GDPR-compliant deletion, and temporal versioning built in. Instead of bolting memory onto your agent framework with ad-hoc solutions, Z3rno provides a single, framework-agnostic memory layer that any agent can plug into.Install the SDK
5-Minute Quickstart
This walkthrough takes you from zero to working agent memory in four steps: connect, store, recall, done.Step 1: Connect
Step 2: Store a memory
memory_type parameter tells Z3rno how to categorize and manage this memory. Use semantic for facts, episodic for events, working for active context, and procedural for learned behaviours.
Step 3: Recall memories
Step 4: Done
That is all it takes. Your agent now has persistent memory that survives across sessions, supports natural-language recall, and scales to millions of memories per agent.Full example
Architecture Overview
Z3rno follows a simple three-layer architecture:Next Steps
Core Concepts
Understand memory types, lifecycle, temporal versioning, and graph relationships.
Python SDK
Full API reference for the Python SDK.
Integrations
Drop Z3rno into LangChain, CrewAI, OpenAI Agents, or Claude via MCP.
Self-Hosting
Run Z3rno locally with Docker Compose.