Slack & MCP now available

The database workspace for intelligent teams

Branch environments in seconds. Give safe data access to non-technical teammates. Let AI tools query your data directly.

Works withPostgreSQLMySQLSQLiteMongoDBRedis
id
feature
category
status
adoption_rate
released_at
1
SQL Editor
core
ga
0.94
2025-09-12T00:00:00Z
2
Query Autocomplete
core
ga
0.87
2025-09-12T00:00:00Z
3
Saved Queries
core
ga
0.81
2025-10-03T00:00:00Z
4
Query Sharing
collaboration
ga
0.73
2025-10-18T00:00:00Z
5
Team Workspaces
collaboration
ga
0.91
2025-09-12T00:00:00Z
6
Database Branches
core
ga
0.62
2025-11-05T00:00:00Z
7
EXPLAIN Analyzer
core
ga
0.58
2025-11-20T00:00:00Z
8
Basetable Bridge
connectivity
ga
0.45
2025-12-01T00:00:00Z
9
MCP Server
integrations
ga
0.39
2026-01-10T00:00:00Z
10
Slack Integration
integrations
ga
0.34
2026-01-22T00:00:00Z
11
Role-Based Access
security
ga
0.76
2025-10-30T00:00:00Z
12
Connection Snapshots
core
ga
0.41
2025-12-15T00:00:00Z
Virtual branching

One database instance, infinite environments. No extra cost.

Spin up isolated database branches in seconds. Each gets its own independent connection string — so staging never touches production, and every developer works in complete isolation.

No more “who dropped the staging table.” Branch your database like you branch code, and delete branches when you're done.

mainproduction

postgres://prod.basetable.dev/main

stagingshared

postgres://prod.basetable.dev/staging

alice/feature-onboardingalice

postgres://branches.basetable.dev/alice-onboard

bob/fix-slow-querybob

postgres://branches.basetable.dev/bob-fixslow

Basetable Bridge

Connect any database, even behind a firewall

Cloud databases connect directly. For everything else — localhost, private VPCs, on-premise — the Bridge agent runs on your machine and tunnels traffic securely to Basetable.

No VPN. No firewall rules. No port forwarding. Run one command and your database appears in the UI with a full connection string, ready to share with your team.

zsh — basetable-bridge
~npx basetable-bridge@latest
Authenticated with Basetable
Tunnel established(TLS 1.3)
Forwarding: localhost:5432
Connection string:
postgres://bridge.basetable.dev/wk_8f3e2a
Bridge active · Ctrl+C to stop

local-postgres

PostgreSQL · localhost:5432

Connected via Bridge
production-db·Connection permissions
SC

Sarah Chen

Engineering

read / write
MW

Marcus Webb

Product

read only
ID

Ines Dupont

Operations

read only
RK

Rohan Kumar

Finance

read only
GF

Guest (unverified)

External

no access
Access control

Safe data access for everyone on your team

Your PM needs weekly signups. Your ops team needs to check order status. They shouldn't need a Jira ticket — and they definitely shouldn't have write access.

Per-user and per-connection permissions let you grant exactly the right access to exactly the right people. Read-only where it matters. No foot-guns, no tickets, no excuses.

AI & chat integrations

Ask your database anything, from anywhere

Connect Basetable to Slack and your AI tools. Get instant answers from your data — no SQL knowledge required.

data-questions
SC
Sarah Chen10:24 AM

how many users signed up last week, and what's their avg GMV vs the prior 3 weeks?

Basetable10:24 AM

Here's the cohort breakdown for the last 4 weeks:

Week
Signups
Avg GMV
Feb 10–16
1,847
$142.30
Feb 3–9
1,612
$128.90
Jan 27–Feb 2
1,508
$121.40
Jan 20–26
1,390
$118.70
Signups +14.6% WoW · Avg GMV +10.4% WoW
MCP Server

Connect to Claude Desktop, Cursor, or any MCP-compatible AI in one config block.

{
  "mcpServers": {
    "basetable": {
      "url": "https://mcp.basetable.dev/mcp",
      "headers": {
        "Authorization": "Bearer bt_..."
      }
    }
  }
}
What it can do
  • Browse tables and inspect schema
  • Run safe, read-only queries
  • Respects your team's permissions
  • Works with Claude, Cursor & more
query.sqlPostgreSQL
1SELECT
2 u.email,
3 COUNT(o.id) AS order_count,
4 SUM(o.total) AS lifetime_value
5FROM users u
6LEFT JOIN o
7WHERE u.created_at > NOW() - INTERVAL '30 days'
8GROUP BY u.email
9ORDER BY lifetime_value DESC
10LIMIT 50
Tables
Torders
Torder_items
Torder_status_log
SQL editor

Write SQL at the speed of thought

Autocomplete suggests tables, columns, and functions as you type — pulled live from your schema. Syntax highlighting, bracket matching, and multi-cursor editing all included.

Paste in a slow query and run EXPLAIN with one click. The analyser highlights the expensive nodes so you know exactly where to look.

Also included

Saved Queries

Save and share queries across your team. Promote from history.

Query Sharing

Share any query with a secure link teammates can load instantly.

Ready to get started?

7 day free trial. No credit card required.