by TabularisDB
Provides a cross‑platform desktop workspace for managing, exploring, and querying a wide range of relational and NoSQL databases, with built‑in AI assistance, visual query building, and an extensible plugin system.
Tabularis is a desktop SQL workspace that supports PostgreSQL, MySQL/MariaDB, SQLite and more than 15 additional databases via plugins. It includes a built‑in MCP server that lets AI agents such as Claude, Cursor and Devin read schemas and run queries directly from their chat interfaces.
tabularis --mcp; configure Claude, Cursor or Devin via Settings → MCP Server Integration for seamless schema‑aware assistance.Q: Do I need an internet connection for AI features? A: Only if you use cloud providers (OpenAI, Anthropic, etc.). Local models via Ollama work entirely offline.
Q: Can I run the MCP server on Windows?
A: Yes. Start the app with tabularis --mcp and configure the AI client as described in the Settings.
Q: How are plugins installed? A: From Settings → Available Plugins, or manually place an executable that follows the JSON‑RPC 2.0 spec.
Q: Is my data encrypted? A: Connection passwords can be stored securely in the system keychain. All other data (queries, notebooks) are saved locally in the user config folder.
Q: What databases are supported out of the box? A: PostgreSQL, MySQL/MariaDB and SQLite. Additional databases are added via the official plugin registry.
winget install Debba.Tabularis # Windows
brew tap TabularisDB/tabularis && brew install --cask tabularis # macOS
sudo snap install tabularis # Linux
Or grab an installer directly:
The app UI is available in English, Italian, Spanish, Chinese (Simplified), French, German, Japanese, Russian, Tagalog and Portuguese (Brazilian).
Discord: Join our Discord server to talk with the maintainers, share feedback, and get help from the community.
| tabularis | DBeaver CE | TablePlus | Beekeeper Studio | |
|---|---|---|---|---|
| License | Apache 2.0, free | Apache 2.0, free (Pro is paid) | Commercial | GPLv3 (paid editions) |
| SQL notebooks (SQL + Markdown cells, cross-cell variables, charts) | ✅ | ❌ | ❌ | ❌ |
| Built-in MCP server for AI agents | ✅ | ❌ | ❌ | ❌ |
| Plugins in any language (JSON-RPC over stdio) | ✅ | Java/Eclipse plugins | JavaScript plugins | ❌ |
| AI text-to-SQL with local models (Ollama) | ✅ | Cloud-based AI assistant | ❌ | ❌ |
| Visual EXPLAIN with interactive plan graphs | ✅ | ✅ | ❌ | ❌ |
| Databases out of the box | 3 built-in + 16 official plugins | 100+ | 20+ | ~10 |
Comparison as of June 2026; features in other tools may have changed since. If you need dozens of drivers, use DBeaver. Tabularis focuses on doing a few databases well.
PostgreSQL, MySQL/MariaDB and SQLite ship built in. Everything else is a plugin. Current coverage, mirroring the driver & plugin coverage on the website:
ClickHouse (shipped), Cloudflare D1 (shipped), DM / Dameng (shipped), DuckDB (shipped), DynamoDB (shipped), Elasticsearch (shipped), Firestore (shipped), IBM Db2 (shipped), IBM Informix (shipped), MongoDB (shipped), Redis (shipped, in Go and Rust), CSV Folder (shipped), Google Sheets (shipped), HackerNews (shipped), Google BigQuery (claimed), LibSQL / Turso (claimed), Meilisearch (claimed), Oracle (claimed), SQL Server (claimed), Amazon Redshift (scoped), CockroachDB (scoped), TiDB (scoped), Snowflake (coming soon), Cassandra (open), Etcd (open), Firebird (open), ScyllaDB (open), SQL Anywhere (open), SurrealDB (open), Trino / Presto (open).
Shipped drivers are installable from the plugin registry. Everything else is on the bounty board: claim one, sponsor one, or request a database. The SQL Server driver is in active development in its own repository, tabularis-sqlserver-plugin.
winget install Debba.Tabularis
Download the installer from the Releases page and run it:
tabularis_x.x.x_x64-setup.exe
Follow the on-screen instructions to complete the installation.
To add our tap, run:
brew tap TabularisDB/tabularis
Then install:
brew install --cask tabularis
Builds from v0.13.1 onward are signed and notarized by Apple, so they open without any extra steps.
The notes below only apply to older releases (before v0.13.1) downloaded directly:
xattr -c /Applications/tabularis.app after copying the app to the Applications directory.sudo snap install tabularis
flatpak remote-add --if-not-exists flatpark https://dl.flatpark.org/flatpark.flatpakrepo
flatpak install flatpark dev.tabularis.Tabularis
Download the .AppImage file from the Releases page, make it executable and run it:
chmod +x tabularis_x.x.x_amd64.AppImage
./tabularis_x.x.x_amd64.AppImage
yay -S tabularis-bin
Tabularis checks for updates automatically on startup and notifies you when a new version is available. You can also download the latest version directly from the Releases page.
Join our Discord server to talk with the maintainers, share feedback, suggest features, or get help from the community.
$$-delimited blocks.{{cell_N}} (expanded to a CTE at run time), plus global @paramName parameters..tabularis-notebook files; export as HTML, CSV, or JSON.Cmd on macOS, Ctrl on Windows/Linux).keybindings.json.Ctrl+Shift in the sidebar to reveal numbered badges (1–9) for instant connection switching.EXPLAIN format per driver.Tabularis is hackable with an external plugin system. Plugins are standalone executables that communicate with the app over JSON-RPC 2.0 via stdin/stdout, and can be written in any language.
plugins/registry.json.plugins/PLUGIN_GUIDE.md to build your own driver in any language..log files.tabularis --debug for verbose logging from launch.Configuration is stored in ~/.config/tabularis/ (Linux), ~/Library/Application Support/tabularis/ (macOS), or %APPDATA%\tabularis\ (Windows): connection profiles, saved queries, app settings (config.json), custom themes, and per-connection editor preferences. Tabs and queries are restored when you reopen a connection. The wiki covers the full file layout and every config.json option, including custom AI model overrides.
Optional Text-to-SQL and query explanation powered by OpenAI, Anthropic, MiniMax, OpenRouter, Ollama (local models, no API key, full privacy), and any OpenAI-compatible API (Groq, Perplexity, Azure OpenAI, LocalAI, ...). Model lists are fetched from your provider and cached locally; custom models can be configured per provider.
Tabularis includes a built-in MCP (Model Context Protocol) server that lets AI agents read your database schema and execute queries directly from their chat interface.
tabularis --mcp
One-click setup for Claude Desktop, Cursor, and Windsurf: open Settings → MCP Server Integration, click Install Config next to your client, and restart it. Manual configuration is covered in the wiki.
Once connected, your AI agent can:
| Tool | Description |
|---|---|
list_connections |
List all saved database connections |
list_databases |
List all databases available for a connection |
list_tables |
List tables in a connection (with optional schema filter) |
describe_table |
Get full schema: columns, indexes, foreign keys |
run_query |
Execute any SQL query and return results |
"Show me all tables in my production database and describe the
orderstable"
"Write and run a query to find the top 10 customers by total order value this month"
"Check if there are any missing indexes on the
userstable"
pnpm install
pnpm tauri dev
pnpm tauri build
Contributions are welcome, see CONTRIBUTING.md. Good places to start:
Tabularis started as an experiment: how far could AI-assisted development get in building a working tool from scratch? Further than expected: it's now an actively maintained project with regular releases and a plugin ecosystem.
Apache License 2.0
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by googleapis
An MCP server that streamlines database tool development by handling connection pooling, authentication, observability, and secure access, allowing agents to interact with databases via natural language.
by bytebase
Provides a universal gateway that lets MCP‑compatible clients explore and query MySQL, PostgreSQL, SQL Server, MariaDB, and SQLite databases through a single standardized interface.
by designcomputer
Enables secure interaction with MySQL databases via the Model Context Protocol, allowing AI applications to list tables, read contents, and execute queries safely.
by benborla
Provides read‑only access to MySQL databases for large language models, allowing schema inspection and safe execution of SQL queries.
by neo4j-contrib
Enables natural‑language interaction with Neo4j databases, allowing large language models to query, modify, and manage graph data through multiple transport modes.
by mongodb-js
Provides a Model Context Protocol server that enables interaction with MongoDB databases and MongoDB Atlas clusters through a unified API.
by ClickHouse
Enables AI assistants to run read‑only ClickHouse queries, list databases and tables, and execute embedded chDB queries through an MCP interface.
by neondatabase
Interact with Neon Postgres databases using natural language commands through the Model Context Protocol, enabling conversational database creation, migration, and query execution.
by domdomegg
Provides read and write access to Airtable bases for AI systems, enabling inspection of schemas and manipulation of records.