get_dag_details
Retrieve comprehensive details for a specific Apache Airflow DAG, including schedule, status, configuration, and metadata.
Instructions
Get detailed information about a specific Apache Airflow DAG.
Use this tool when the user asks about:
"Show me details for DAG X" or "What are the details of DAG Y?"
"Tell me about DAG Z" or "Get information for this specific DAG"
"What's the schedule for DAG X?" or "When does this DAG run?"
"Is DAG Y paused?" or "Show me the configuration of DAG Z"
"Who owns this DAG?" or "What are the tags for this workflow?"
Returns complete DAG information including:
dag_id: Unique identifier for the DAG
is_paused: Whether the DAG is currently paused
is_active: Whether the DAG is active
is_subdag: Whether this is a SubDAG
fileloc: File path where the DAG is defined
file_token: Unique token for the DAG file
owners: List of DAG owners
description: Human-readable description of what the DAG does
schedule_interval: Cron expression or timedelta for scheduling
tags: List of tags/labels for categorization
max_active_runs: Maximum number of concurrent runs
max_active_tasks: Maximum number of concurrent tasks
has_task_concurrency_limits: Whether task concurrency limits are set
has_import_errors: Whether the DAG has import errors
next_dagrun: When the next DAG run is scheduled
next_dagrun_create_after: Earliest time for next DAG run creation
Args: dag_id: The ID of the DAG to get details for
Returns: JSON with complete details about the specified DAG
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |