conductorv2
Plugins/Developer

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

NameLabelRequired
DATABASE_URLConnection URLoptional

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

ToolDescriptionApproval
db_queryRun a SQL queryrequired
db_tablesList tables in database
db_schemaGet table schema
db_executeExecute a statementrequired

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