SQL Agent in Your Browser
The Web Workspace is the full SQL Agent — natural language to SQL, schema browsing, history, saved queries, and exports — with nothing to install. Sign in from any machine and start querying.
Signing up creates a 14-day free trial license that unlocks the Web Workspace and the CLI immediately. No credit card required.
Prompt
Show me the top 10 customers by revenue this quarter
Generated SQL
SELECT c.name, SUM(o.amount) AS revenue
FROM customers c JOIN orders o ON o.customer_id = c.id
WHERE o.created_at >= date_trunc('quarter', CURRENT_DATE)
GROUP BY c.name ORDER BY revenue DESC LIMIT 10;
Everything the CLI Does — In the Browser
The Web Workspace runs the same AI agent and the same safety rules as the CLI. Same account, same license, no separate subscription.
Connection Profiles
Save PostgreSQL, MySQL, and SQLite connections once and switch between them instantly. Passwords are encrypted at rest and never shown again after saving.
Schema Browser
Explore tables, columns, types, keys, and indexes visually. Preview sample rows without writing a single query.
History & Saved Queries
Every run is saved with its SQL, results, and timings. Rerun past queries, save the good ones, and keep them organized per database.
Exports
Download results as CSV, JSON, or Excel (XLSX) with one click — ready for reports, spreadsheets, and downstream tools.
Your LLM or Ours
Bring your own OpenAI, Anthropic, or other provider key (stored encrypted, shown masked) — or use the managed default and skip the setup.
Safe by Default
Connections are read-only unless you explicitly enable writes per profile. Dangerous statements are blocked and results are row-capped — the same protections as the CLI.
Up and Running in Three Steps
-
1
Create an account
Signup automatically starts a 14-day free trial license — it unlocks the Web Workspace right away, and the CLI too if you want it later.
-
2
Add a connection profile
Point the workspace at your PostgreSQL, MySQL, or SQLite database and test the connection. Credentials are encrypted before they touch the database.
-
3
Ask questions
Type what you want to know in plain language. Review the generated SQL, run it, and export the results — all from the browser.
See It Working Before You Sign Up
The live demo runs the same agent against a sample e-commerce database — no account needed. When you're ready, the free trial connects it to your own data.
Prefer the terminal? Download the CLI — the same license unlocks both.