Stop fightingyour database client

Tablekit is the PostgreSQL client that gets out of your way. AI-powered queries, beautiful UI, and the keyboard shortcuts you actually want.

Free 14-day trial · Then £4.99/mo or £99 once

Tablekit
production_db
Data
Schema
Dashboard
Analysis
READ-ONLY
Search tables...
Tables (6)
users1,247
orders8,432
products342
categories24
reviews5,621
sessions892
users
orders
users1,247 rows
idnameemailrolestatuscreated_at
1Alice Chenalice@company.ioadminactive2024-01-15
2Marcus Johnsonmarcus@company.iouseractive2024-01-14
3Sarah Kimsarah@company.iouserpending2024-01-13
4James Wilsonjames@company.ioeditoractive2024-01-12
5Emma Davisemma@company.iouseractive2024-01-11
6Oliver Brownoliver@company.ioadminactive2024-01-10
Showing 1-6 of 1,247
Core Features

Everything you need to manage your data

Powerful features designed for developers who value their time and sanity.

Rich Cell Previews

Intelligent cell rendering for JSON, dates, colors, emails, URLs, and more. See your data the way it's meant to be seen.

AI Data Analysis

Ask questions about your data in natural language. Get insights, generate queries, and automate repetitive tasks.

Schema Diagram

Visual ERD with drag-and-drop editing. Understand relationships at a glance and navigate your schema effortlessly.

Database Auditing

Full changelog of every insert, update, and delete. Know exactly what changed, when, and revert if needed.

Table Pinning

Pin your most-used tables to the top. Quick access to what matters most, always one click away.

Custom Smart Links

Create URL templates like https://app.com/{category.slug}/{slug}. Jump from your data to your app instantly.

Data Dashboard

Visualize key metrics with built-in charts and graphs. Monitor your database health at a glance.

Safe Mode

Prevent accidental data modifications. Perfect for production databases where every change matters.

Relationship Explorer

Navigate foreign key relationships visually. Follow the data trail across your entire schema.

Import & Export

CSV, JSON, SQL — whatever format you need. Seamless data migration and backup in seconds.

SQL Editor

Full-featured SQL editor with autocomplete, syntax highlighting, and query history.

Automated Scripts

Create and run custom scripts with AI assistance. Automate your database workflows.

Smart Table Detection

Skills that understand your data

Tablekit automatically detects data patterns and unlocks powerful features tailored to your schema.

Geo

Geo Data Visualization

Tables with latitude/longitude columns are automatically detected and can be viewed on an interactive map. Perfect for location-based data exploration.

Auto-detect coordinate columns
Interactive map view with clustering
Filter and search on the map
Export geo data to GeoJSON
id
name
lat
1
Central Park
40.7829
2
Golden Gate
37.8199
3
Big Ben
51.5007
4
Eiffel Tower
48.8584
Location
Lat
51.5007
Lng
-0.1246
Open in Maps
Pivot

Pivot Table Detection

Tablekit identifies tables suited for aggregation and offers instant pivot views. Transform raw data into actionable insights.

Smart column categorization
One-click pivot transformations
Multiple aggregation functions
Export pivot results
categories
id
name
1
Electronics
2
Furniture
3
Clothing
pivot_table
cat_id
sup_id
1
1
2
2
3
3
suppliers
id
company
1
TechCorp
2
FurnishCo
3
StyleWear
Rich

Rich Content Awareness

From JSON blobs to color codes, Tablekit renders your data intelligently. No more squinting at raw strings.

JSON syntax highlighting & expansion
Color swatches for hex/rgb values
Email validation & mailto links
URL detection & preview
id
name
website
1
Stripe
stripe.com
2
Linear
linear.app
3
Vercel
vercel.com
Stripe
S
stripe.com

Stripe | Financial Infrastructure

Millions of companies use Stripe to accept payments.

Smart

Smart Database Profiling

Tablekit automatically recognizes popular database schemas like WordPress and NextAuth, unlocking tailored quick actions and insights.

Auto-detect WordPress, NextAuth & more
One-click quick actions per profile
Custom icons for recognized tables
Extensible profile system
WordPressDetected
Quick Actions
Get WordPress Version
List All Users
Tables
wp_posts
2,847
wp_users
156
wp_options
892
NextAuth.jsDetected
Auth profile active
Quick Actions
Tables
User
1,204
Account
1,847
Session
3,291
2 profiles detected
AI-Powered Analysis

Ask your data anything

A conversational AI that understands your schema, writes optimized SQL, fetches external data, and generates beautiful visualizations—all from natural language.

SQL Queries
Visualizations
API Fetching
Custom Scripts
Dashboards
Data Export
Natural Language to SQL

Query your data without writing SQL

Just describe what you need in plain English. The AI understands your schema, writes optimized queries with proper JOINs, and returns results instantly. Every query is read-only for safety.

  • Automatic JOIN detection from your relationships
  • Smart aggregations and GROUP BY clauses
  • Results exportable to CSV, JSON, or SQL editor
AI Analysis

Show me the top 5 customers by total order value

Here are your top customers by revenue:

Top customers query
5 rows23ms
SELECT c.name, SUM(o.total) as revenue
FROM customers c
JOIN orders o ON o.customer_id = c.id
GROUP BY c.id, c.name
ORDER BY revenue DESC
LIMIT 5
name
revenue
Acme Corp
£142,350
TechStart Inc
£98,200
GlobalTrade
£87,650
DataFlow Ltd
£72,100
CloudNine
£65,800
AI Analysis

Create a chart of monthly sales for this year

Here's your sales trend for 2024:

Monthly Sales (£k)
Jan
Feb
Mar
Apr
May
Jun
£480k
Total
+18%
vs Last Year
£110k
Best Month
Instant Visualizations

Turn data into charts with a sentence

Request bar charts, line graphs, pie charts, or stat cards and watch them appear instantly. The AI chooses the right visualization for your data and formats everything beautifully.

  • Bar, line, and pie charts with smart formatting
  • Stat cards with trend indicators
  • Automatically labeled axes and legends
Custom Scripts & API Fetching

Automate complex workflows

Need to fetch data from an API and combine it with your database? The AI writes and executes sandboxed JavaScript that can query your data, call external APIs, and transform results—all securely.

  • Fetch from any public API endpoint
  • Multi-step data transformations
  • Secure sandboxed execution environment
AI Analysis

Fetch the latest exchange rates and update the prices table with USD equivalents

I'll fetch the rates and calculate the conversions:

Currency conversion script
1 fetch2 queries
// Fetch live exchange rates
const rates = await fetch(
  'https://api.exchangerate.host/latest?base=GBP'
);
const { rates: { USD } } = await rates.json();

// Get prices and calculate USD values
const prices = await query(
  'SELECT id, name, price_gbp FROM products'
);

return prices.rows.map(p => ({
  ...p,
  price_usd: (p.price_gbp * USD).toFixed(2)
}));
Script completed
142 rows processed1.2s
name
price_gbp
price_usd
Pro Plan
£49.99
$63.24
Enterprise
£199.99
$252.99
Starter
£9.99
$12.64
Visual Schema Explorer

See your entire database at once

Beautiful ERD diagrams that actually help you understand your schema. Drag tables, explore relationships, and document your architecture—all in one view.

  • Drag-and-drop table positioning
  • One-click relationship navigation
  • Export to PNG, SVG, or PDF
  • Share with your team

users

3
iduuid
PK
nametext
emailtext

orders

3
iduuid
PK
user_iduuid
FK
totaldecimal

posts

3
iduuid
PK
author_iduuid
FK
titletext
Keyboard First

Built for power users

Every action is keyboard accessible. Navigate, filter, and edit without touching your mouse.

K

Command palette

S

Quick search

N

New tab

D

Duplicate row

Execute query

E

Export data

F

Filter column

Esc

Cancel / close

Everything you need. One simple price.

No feature gates. No usage limits. No surprise bills.

DataGrip£19.90/mo
Beekeeper£16/mo
Tablekit
£4.99/mo
Lifetime License
£99one-time

Pay once, own forever. All future updates included.

Less than a coffee per week

For a tool you'll use every single day

14 days free

Full access. No credit card required.

  • Unlimited database connections
  • AI-powered data analysis
  • Visual schema diagrams
  • Smart table detection
  • Import & export everything
  • Database auditing
Secure
Private
Native

30-day money-back guarantee

Not happy? Full refund, no questions asked.

Common questions

Can I try it before paying?

Yes! Get 14 days free with full access to every feature. No credit card needed to start.

What if I need to cancel?

Cancel anytime with one click. No questions, no hidden fees, no annual lock-in.

Do you offer team pricing?

Currently it's per-seat pricing at £4.99/month each. Contact us for teams of 10+ for volume discounts.

Ready to love your database client?

Join thousands of developers who've upgraded their workflow.

macOS 12+ required • Apple Silicon native • 14-day free trial