Database Query Execute SQL against PostgreSQL or MySQL via CLI. Environment Variables - - PostgreSQL connection string (e.g. ) - , , , - MySQL connection params PostgreSQL CSV output: List tables: Describe table: MySQL Safety - Always use on SELECT queries unless the user explicitly asks for all rows. - Never run , , or without explicit user confirmation. - Prefer read-only queries. If a write is needed, confirm with the user first. ---