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, Continue. Zero-config for ephemeral, env var for persistent.
npx -y dbaas-mcp🤖
A2A Agent
17 skills for AI agents. Async natural-language workflows: provision, schema design, sample data, ORM codegen.
api.dbaas.dev/.well-known/agent-card.json🔗
REST API
Full OpenAPI 3.2 spec. Use from curl, Node.js, Python, Go, or any HTTP client.
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