20MB lightweight database client for 70+ databases
Go to file
t8y2 71f9f11eec docs: add MDX code sync plan 2026-05-17 11:24:33 +08:00
.cargo perf: use lld linker for faster Windows builds 2026-05-07 16:21:21 +08:00
.github ci(mcp): restore direct release publishing 2026-05-17 10:53:05 +08:00
.husky chore: add src-web to pre-commit cargo fmt hook 2026-05-05 21:14:24 +08:00
1panel refactor(ci): switch 1Panel appstore to community repo and manual trigger 2026-05-11 11:41:51 +08:00
crates/dbx-core fix(schema): list routines in object browser 2026-05-17 10:36:55 +08:00
docs docs: add MDX code sync plan 2026-05-17 11:24:33 +08:00
mcp chore(mcp): release 0.4.1 [skip mcp-release] 2026-05-17 02:36:04 +00:00
plugins/jdbc fix(jdbc): apply query execution context 2026-05-16 10:49:54 +08:00
public feat: add Microsoft Access database support 2026-05-17 09:57:04 +08:00
scripts feat(docs): add changelog system, install tabs, and sync workflow 2026-05-16 18:41:12 +08:00
src feat(schema): add object rename actions 2026-05-17 10:54:50 +08:00
src-tauri chore: bump version to 0.5.10 2026-05-17 10:57:45 +08:00
src-web chore: bump version to 0.5.10 2026-05-17 10:57:45 +08:00
tests feat(schema): add object rename actions 2026-05-17 10:54:50 +08:00
.dockerignore feat: add web deployment with axum server, Docker support, and browser UI 2026-05-05 03:16:50 +08:00
.gitignore chore: gitignore releases-*.json and remove from tracking 2026-05-16 18:46:26 +08:00
.oxfmtrc.json chore: add oxfmt + husky + lint-staged for code formatting and CI format checks 2026-05-05 15:41:34 +08:00
Cargo.lock chore: bump version to 0.5.10 2026-05-17 10:57:45 +08:00
Cargo.toml Revert "feat(cli): add dbx-cli runtime and agent integration (#229)" 2026-05-12 17:31:54 +08:00
Dockerfile fix(docker): touch source files to force cargo recompilation 2026-05-07 21:12:41 +08:00
LICENSE docs: revamp README with new screenshots and AGPL-3.0 license 2026-05-06 01:40:54 +08:00
README.md docs(readme): rename WeChat to 微信群 and open community links in new tab 2026-05-14 12:18:34 +08:00
README.zh-CN.md docs(readme): rename WeChat to 微信群 and open community links in new tab 2026-05-14 12:18:34 +08:00
codecov.yml feat(ci): integrate Codecov for test coverage reporting 2026-05-14 20:33:26 +08:00
components.json feat: initial release 2026-04-29 18:09:23 +08:00
docker-compose.yml feat: add web deployment with axum server, Docker support, and browser UI 2026-05-05 03:16:50 +08:00
index.html feat: enhance loading experience and update window visibility settings 2026-04-29 18:33:41 +08:00
package.json chore: bump version to 0.5.10 2026-05-17 10:57:45 +08:00
pnpm-lock.yaml feat(ci): integrate Codecov for test coverage reporting 2026-05-14 20:33:26 +08:00
rustfmt.toml chore: add rustfmt.toml and apply unified code formatting 2026-05-05 14:16:18 +08:00
tsconfig.json feat: initial release 2026-04-29 18:09:23 +08:00
vite.config.ts perf: full-stack performance optimization 2026-05-10 23:23:22 +08:00

README.md

DBX

25+ databases in 15 MB. Desktop & Docker self-hosting, with built-in AI assistant.

Join Discord Join QQ Group Join WeChat Group

English | 前往中文版本

Features

17+ Databases, One Tool

MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, ClickHouse, SQL Server, Oracle, Elasticsearch, MariaDB, TiDB, OceanBase, openGauss, GaussDB, KingBase, Vastbase, GoldenDB — connect to all of them from a single ~15 MB app. No bundled Chromium.

Query Editor

CodeMirror 6 with SQL syntax highlighting, smart autocomplete (tables & columns), Cmd+Enter execution, selected SQL execution, SQL formatting, and 9 editor themes. Persistent query history with search and restore.

AI SQL Assistant

Describe what you want in plain language — get SQL back. Also explains, optimizes, and fixes errors. Works with Claude, OpenAI, or any OpenAI-compatible endpoint.

Data Grid

Virtual-scrolled table that handles millions of rows. Inline editing, sorting, full-text search, pagination, column resize, row numbers, zebra stripes. Export to CSV, JSON, Markdown.

Schema Tools

  • Schema browser — databases, schemas, tables, columns, indexes, foreign keys, triggers, with sidebar search & pin
  • ER diagram — visualize table relationships
  • Schema diff — compare structures across connections
  • Explain plan — visual query execution plan
  • Field lineage — column-level lineage analysis

Data Operations

  • Table import — CSV, Excel
  • Data transfer — migrate between databases
  • Database export — full database dump
  • SQL file execution — run .sql files directly
  • File preview — drag & drop Parquet, CSV, JSON to preview instantly (powered by DuckDB)

Specialized Browsers

  • Redis — key pattern search, all data types (String, Hash, List, Set, ZSet, Stream)
  • MongoDB — document CRUD with pagination, Atlas & replica set URL connection

Safety & Connectivity

SSH tunnel (key & password) · auto-reconnect on connection loss · confirmation dialogs for destructive operations · encrypted config export/import · color-coded connections

Polished UI

Dark mode with native title bar sync · 9 editor themes · English & 简体中文 · built-in auto-update

AI Agent Integration (MCP)

DBX provides an MCP server that lets AI coding agents query your databases using connections already configured in DBX.

npx @dbx-app/mcp-server

Add to your .mcp.json:

{
  "mcpServers": {
    "dbx": { "command": "npx", "args": ["-y", "@dbx-app/mcp-server"] }
  }
}

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible agent. Supports listing connections, browsing tables, executing SQL, and opening tables directly in DBX's UI.

See the MCP server README for details.

Install

Download the latest release from the Releases page.

Homebrew (macOS):

brew install --cask t8y2/tap/dbx

Scoop (Windows):

scoop bucket add dbx https://github.com/t8y2/scoop-bucket
scoop install dbx

Self-Hosted (Docker)

DBX provides a web version that can be deployed via Docker.

docker run -d --name dbx -p 4224:4224 -v dbx-data:/app/data t8y2/dbx

Or with Docker Compose:

services:
  dbx:
    image: t8y2/dbx
    ports:
      - "4224:4224"
    volumes:
      - dbx-data:/app/data
    restart: unless-stopped

volumes:
  dbx-data:

Open http://localhost:4224 in your browser. Multi-arch images (amd64 / arm64) are available.

Getting Started

Prerequisites

System Dependencies

macOS:

No additional dependencies required.

Linux (Ubuntu/Debian):

sudo apt-get install -y libwebkit2gtk-4.1-dev libgtk-3-dev libappindicator3-dev librsvg2-dev patchelf libssl-dev

Windows:

No additional dependencies required.

Development

pnpm install
pnpm dev:tauri

Web version:

pnpm dev:web       # frontend
pnpm dev:backend   # backend

Build

pnpm tauri build

The installer will be in src-tauri/target/release/bundle/.

Tech Stack

Layer Technology
Framework Tauri 2
Frontend Vue 3 + TypeScript
UI shadcn-vue + Tailwind CSS
Editor CodeMirror 6
Backend Rust + sqlx / tiberius / redis-rs / mongodb

Community

Discord QQ Group WeChat Group LINUX DO

Contributors

Star History

Star History Chart

License

AGPL-3.0