get_dag
Retrieve a specific DAG by its ID from Apache Airflow using the MCP Server's standardized REST API interface for efficient DAG management and monitoring.
Instructions
Get a DAG by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
}
},
"required": [
"dag_id"
],
"title": "get_dagArguments",
"type": "object"
}