zaturn
Author: kdqed
Description: AI-assisted data-analytics server & web notebook that lets you chat with multiple SQL databases or flat-file datasets and auto-generates queries, summaries and visualisations.
Stars: 52
Forks: 7
License: MIT License
Category: Open Source
Overview
Installation
# Prerequisites
1. Python ≥ 3.9
2. Git (only if installing from source)
# 1-line install from PyPI (recommended)
pip install zaturn# Install latest development version
git clone https://github.com/kdqed/zaturn.git
cd zaturn
pip install -e .# Basic configuration
1. Create an environment variable for your MCP access token (if your deployment requires authenticated model access):
export MCP_TOKEN="<your-mcp-token>"2. (Optional) Create a `.zaturn.yml` file in your project root to override defaults:
server:
host: 0.0.0.0
port: 8080
models:
default: gpt-4o3. Start the server:
python -m zaturn.server --config .zaturn.yml# Docker quick-start
docker pull kdqed/zaturn:latest
docker run -d -p 8080:8080 -e MCP_TOKEN=$MCP_TOKEN kdqed/zaturn:latestLicense: MIT License
Updated 7/30/2025