Integrations
Use your PostgreSQL databases directly from Claude, Cursor, VS Code, and any REST client. No backend glue code required.
🔌
MCP Server
14 tools for Claude Desktop, Cursor, and Continue. Zero-config for ephemeral databases — set one env var to unlock persistent databases.
npx -y dbaas-mcp🔗
REST API
Full OpenAPI 3.1 spec. Use from curl, Node.js, Python, Go, or any HTTP client. Ephemeral endpoints need no auth.
api.dbaas.dev/openapi.yaml30-second quick start — no account needed
Spin up a throwaway Postgres and run SQL, all over HTTP.
# Create a database (auto-deletes in 5 min)
curl -s -X POST https://api.dbaas.dev/v1/ephemeral/create \
-H "Content-Type: application/json" \
-d '{"ttl":5}' | jq '{id:.data.id, user:.data.username, pass:.data.password}'
# Poll until status=running (~30s), then run SQL
curl -s -X POST https://api.dbaas.dev/v1/ephemeral/<id>/sql \
-H "Content-Type: application/json" \
-d '{"sql":"SELECT version()"}' | jq .data.rows