Pre-built binaries for oxidb-server and oxidb CLI. Statically linked on Linux (musl). No dependencies required.
Realtime and geospatial release. Change events now carry the document, WebSocket subscription filters speak the full query language, and geo gains polygon geofences, $geoNear and a disk-backed index. What changed. The document, SQL and time-series engines, the S3 and PostgreSQL wire surfaces, the MQTT and AMQP brokers — still one binary, source-available and free to run in production at any scale.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Linux | x86_64 | oxidb-server-v0.43.0-linux-amd64.tar.gz |
10.4 MB | musl static | Download |
| Linux | ARM64 | oxidb-server-v0.43.0-linux-arm64.tar.gz |
9.3 MB | musl static | Download |
| macOS | ARM64 (Apple Silicon) | oxidb-server-v0.43.0-darwin-arm64.tar.gz |
9.0 MB | tar.gz | Download |
| macOS | x86_64 (Intel) | oxidb-server-v0.43.0-darwin-amd64.tar.gz |
10.0 MB | tar.gz | Download |
| Windows | x86_64 | oxidb-server-v0.43.0-windows-amd64.zip |
9.9 MB | zip | Download |
| SHA256 Checksums | txt | Verify | |||
# Linux / macOS
curl -LO https://oxidb.baltavista.com/releases/v0.43.0/oxidb-server-v0.43.0-linux-amd64.tar.gz
tar xzf oxidb-server-v0.43.0-linux-amd64.tar.gz
./oxidb-server
# Or use as a Rust library
cargo add oxidb
Interactive shell and REPL with MongoDB-style syntax, SQL support, vector search, and embedded mode.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Linux | x86_64 | oxidb-v0.43.0-linux-amd64.tar.gz |
3.7 MB | musl static | Download |
| Linux | ARM64 | oxidb-v0.43.0-linux-arm64.tar.gz |
3.4 MB | musl static | Download |
| macOS | ARM64 (Apple Silicon) | oxidb-v0.43.0-darwin-arm64.tar.gz |
3.2 MB | tar.gz | Download |
| macOS | x86_64 (Intel) | oxidb-v0.43.0-darwin-amd64.tar.gz |
3.5 MB | tar.gz | Download |
| Windows | x86_64 | oxidb-v0.43.0-windows-amd64.zip |
3.6 MB | zip | Download |
| SHA256 Checksums | txt | Verify | |||
# Linux / macOS
curl -LO https://oxidb.baltavista.com/releases/v0.43.0/oxidb-v0.43.0-linux-amd64.tar.gz
tar xzf oxidb-v0.43.0-linux-amd64.tar.gz
./oxidb --data ./mydb # embedded mode
./oxidb --host 127.0.0.1 # client mode
# Or build from source
cargo build --release -p oxidb-cli
MCP (Model Context Protocol) server — lets Claude Code, Claude Desktop, Cursor and other AI hosts query OxiDB directly: documents, SQL, time-series and full-text search, plus explain for diagnosing slow queries. Read-only unless you opt in. Talks to any existing server over the native protocol.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Linux | x86_64 | oxidb-mcp-v0.43.0-linux-amd64.tar.gz |
500 KB | musl static | Download |
| Linux | ARM64 | oxidb-mcp-v0.43.0-linux-arm64.tar.gz |
456 KB | musl static | Download |
| macOS | ARM64 (Apple Silicon) | oxidb-mcp-v0.43.0-darwin-arm64.tar.gz |
386 KB | tar.gz | Download |
| macOS | x86_64 (Intel) | oxidb-mcp-v0.43.0-darwin-amd64.tar.gz |
424 KB | tar.gz | Download |
| Windows | x86_64 | oxidb-mcp-v0.43.0-windows-amd64.zip |
416 KB | zip | Download |
| SHA256 Checksums | txt | Verify | |||
# Linux / macOS
curl -LO https://oxidb.baltavista.com/releases/v0.43.0/oxidb-mcp-v0.43.0-linux-amd64.tar.gz
tar xzf oxidb-mcp-v0.43.0-linux-amd64.tar.gz
# Register it with an MCP host (Claude Code shown)
claude mcp add oxidb -e OXIDB_ADDR=127.0.0.1:4444 -- ./oxidb-mcp
# Give the assistant a Read-role account and reads stay read-only,
# enforced by the server. Writes additionally need OXIDB_MCP_WRITES=1.
Desktop GUI (Tauri) — SQL editor with schema tree, a visual Query Designer (drag-to-connect joins), editable result grids, table CRUD, SCRAM auth with saved connections, and an OxiMem browser.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| macOS | ARM64 (Apple Silicon) | OxiDB-Studio-0.3.0-macos-arm64.dmg |
6.1 MB | dmg | Download |
| Windows & Linux builds — coming soon (built per-platform) | Source | ||||
# Download, open the .dmg, drag OxiDB to Applications.
# First launch: right-click → Open (unsigned build).
curl -LO https://oxidb.baltavista.com/releases/studio/OxiDB-Studio-0.3.0-macos-arm64.dmg
Entity Framework Core provider for the OxiDB SQL engine (with ADO.NET / Dapper) — passes all 3832 official EF Core spec tests and beats PostgreSQL. See .NET / EF Core examples.
| Package | Purpose | File | Size | |
|---|---|---|---|---|
OxiDb.EntityFrameworkCore |
EF Core provider (SQL engine) | .nupkg |
22 KB | Download |
OxiDb.Data |
ADO.NET (Dapper-ready) | .nupkg |
19 KB | Download |
OxiDb.Client.Tcp |
TCP client (dependency) | .nupkg |
43 KB | Download |
# download all three, then add the folder as a NuGet source
curl -LO https://oxidb.baltavista.com/nuget/OxiDb.EntityFrameworkCore.0.43.0.nupkg
curl -LO https://oxidb.baltavista.com/nuget/OxiDb.Data.0.43.0.nupkg
curl -LO https://oxidb.baltavista.com/nuget/OxiDb.Client.Tcp.0.43.0.nupkg
dotnet nuget add source $(pwd) --name oxidb
dotnet add package OxiDb.EntityFrameworkCore
Run OxiDB directly in the browser via WebAssembly. Built with wasm-pack.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Browser | wasm32 | oxidb-wasm-v0.43.0.tar.gz |
873 KB | wasm-pack | Download |
| SHA256 Checksums | txt | Verify | |||
curl -L -o oxidb-wasm.tar.gz \
/releases/v0.43.0/oxidb-wasm-v0.43.0.tar.gz
mkdir wasm && tar xzf oxidb-wasm.tar.gz -C wasm/
OxiWire binary protocol, .NET EF Core provider, parallel serialization, MsgPack removed. Full changelog
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Linux | x86_64 | oxidb-server-v0.18.0-linux-amd64.tar.gz |
5.4 MB | musl static | Download |
| Linux | ARM64 | oxidb-server-v0.18.0-linux-arm64.tar.gz |
4.8 MB | musl static | Download |
| macOS | ARM64 (Apple Silicon) | oxidb-server-v0.18.0-darwin-arm64.tar.gz |
4.6 MB | tar.gz | Download |
| macOS | x86_64 (Intel) | oxidb-server-v0.18.0-darwin-amd64.tar.gz |
5.1 MB | tar.gz | Download |
| Windows | x86_64 | oxidb-server-v0.18.0-windows-amd64.zip |
5.0 MB | zip | Download |
| SHA256 Checksums | txt | Verify | |||
Interactive shell and REPL with MongoDB-style syntax, SQL support, vector search, and embedded mode.
| Platform | Architecture | File | Size | Type | |
|---|---|---|---|---|---|
| Linux | x86_64 | oxidb-cli-v0.18.0-linux-amd64.tar.gz |
3.9 MB | musl static | Download |
| Linux | ARM64 | oxidb-cli-v0.18.0-linux-arm64.tar.gz |
3.6 MB | musl static | Download |
| macOS | ARM64 (Apple Silicon) | oxidb-cli-v0.18.0-darwin-arm64.tar.gz |
3.3 MB | tar.gz | Download |
| macOS | x86_64 (Intel) | oxidb-cli-v0.18.0-darwin-amd64.tar.gz |
3.7 MB | tar.gz | Download |
| Windows | x86_64 | oxidb-cli-v0.18.0-windows-amd64.zip |
3.8 MB | zip | Download |
| SHA256 Checksums | txt | Verify | |||
| Method | Command |
|---|---|
| Rust (embedded library) | cargo add oxidb |
| Python client | pip install oxidb or copy oxidb.py |
| Python Embedded (FFI) | pip install oxidb-embedded |
| Go client | go get oxidb |
| .NET TCP client | dotnet add package OxiDb.Client.Tcp |
| .NET Embedded | dotnet add package OxiDb.Client.Embedded |
| .NET LINQ provider | dotnet add package OxiDb.Linq |
| WebAssembly (browser) | See /wasm for setup |
| Build server from source | cargo build --release -p oxidb-server |
| Build CLI from source | cargo build --release -p oxidb-cli |
Her Şeyin Veritabanı — a free 240-page book (in Turkish) on how a database works inside, from first principles to OxiDB's document, SQL and time-series engines. Details