airflow-list-dags
List Airflow DAGs, filtering by active status, tag, or substring search on DAG ID. Reduce response size with field projection.
Instructions
List Airflow DAGs (active by default) with optional tag filter and dag_id substring search
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| onlyActive | No | Filter out paused DAGs (Airflow 3.x: is_paused=false) | |
| tag | No | Filter to DAGs that carry this tag | |
| search | No | Substring match on dag_id (case-insensitive) | |
| limit | No | ||
| extractFields | No | Comma-separated dotted paths to project from response (e.g. 'id,name,owner.name,columns.*.name'). Use `*` as wildcard for arrays/objects. Wrap field names with dots in backticks. Reduces response tokens dramatically on large entities. |