Database
Query SQLite, PostgreSQL, MySQL, and MongoDB databases.
partial auth4 tools
SQLite works without config. Other databases require connection string.
Connect to databases and run queries. Supports SQLite (local files), PostgreSQL, MySQL, and MongoDB. Use for data exploration, migrations, and building AI-powered database tools.
Credentials
| Name | Label | Required |
|---|---|---|
DATABASE_URL | Connection URL | optional |
Setup
terminal
conductor config set plugins.database.url "postgresql://user:pass@host/db"
# Or for SQLite (no config needed):
conductor config set plugins.database.type "sqlite"Install
Built-in — no installation needed. Works immediately.
Tools
| Tool | Description | Inputs | Approval |
|---|---|---|---|
db_query | Run a SQL query | query, database? | required |
db_tables | List tables in database | database? | — |
db_schema | Get table schema | table, database? | — |
db_execute | Execute a statement | statement, database? | required |
Tools marked required will prompt the user for approval before execution. These are typically write, delete, or send operations.
Example Prompts
“What tables are in my database?”
db_tables“Run this SQL query”
db_query