TupleBase Pre-release
Pre-release

// free VS Code extension

The database workbench your agent already knows how to use.

Inspect schemas and run queries without leaving your editor, then hand the same workbench to your agent over MCP. Free, no account needed.

Install for VS Code

Also on Open VSX for Cursor, Windsurf, and VSCodium

revenue.sql — VS Code
TUPLEBASE: EXPLORER

prod-analytics

▾ public

▸ accounts

▸ events

▸ invoices

staging

revenue.sql

1SELECT plan, count(*), sum(mrr)

2FROM accounts

3GROUP BY plan;

RESULTS · 3 TUPLES · 12 MS
plancountsum
scale41172200
team204234600
free18930
agent session — via TupleBase MCP

agent> tuplebase.listConnections()

"prod-analytics" postgres · connected

agent> SELECT plan, count(*), sum(mrr)

FROM accounts GROUP BY plan;

-- 3 tuples · 12 ms

('scale', 41, 172200)

('team', 204, 234600)

('free', 1893, 0)

agent>

MCP built in

Your saved connections double as an MCP server. Point Claude or Copilot at it and they can read schemas and run queries, under the same permissions you set for yourself.

Pair with your agent

Your agent reads the schema and drafts the query; you review the tuples before anything touches production. Same workbench, both sides.

Tools in the editor

Agents that live inside VS Code don't even need MCP: every TupleBase action is also a plain editor command and language-model tool.

postgres:// Available
mysql:// Available
mariadb:// Available
sqlite:// Coming soon
mongodb:// Coming soon
redis:// Coming soon
dynamodb:// Coming soon

More engines are coming. Tell us which one you need on the public roadmap.