← dbaas.dev
INDIVIDUAL MCP TOOL
list_databases
List persistent databases owned by the authenticated user.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.dbaas-dev]
url = "https://api.dbaas.dev/v1/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"dbaas-dev": {
"type": "http",
"url": "https://api.dbaas.dev/v1/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: dbaas-dev
Remote MCP URL: https://api.dbaas.dev/v1/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"dbaas-dev": {
"url": "https://api.dbaas.dev/v1/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"dbaas-dev": {
"type": "http",
"url": "https://api.dbaas.dev/v1/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "dbaas-dev",
"transport": "streamable-http",
"url": "https://api.dbaas.dev/v1/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
provision_ephemeral_postgres— Provision a throwaway PostgreSQL database with a TTL of 1–60 minutes.get_ephemeral_database— Poll an ephemeral database by id.exec_sql_ephemeral— Execute SQL on an ephemeral database.create_database— Provision a new persistent PostgreSQL database.get_database_info— Get connection details (host, port, username, connection string) for a persistent database.exec_sql— Execute SQL on a persistent database.stop_database— Stop a running database (scales pod to 0; data preserved).start_database— Start a stopped database.