list_connections
Confirm that an Airflow connection exists with the expected type, host, and schema when a task fails to connect. Lists connections read-only without exposing passwords.
Instructions
List Airflow Connections (read-only) — passwords are never returned by the API.
Read-only by design: use it to confirm a connection exists with the expected conn_type / host / schema when a task fails to connect.
Args: limit: Max connections to return (default 100). offset: Pagination offset.
Returns:
ConnectionList with connections (connection_id, conn_type, host, db_schema,
login, port, description) and total_entries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connections | Yes | ||
| total_entries | No |