get_dag_details
Fetch a simplified representation of a DAG in Apache Airflow by specifying the DAG ID and optional fields, enabling streamlined DAG management and monitoring through the MCP Server interface.
Instructions
Get a simplified representation of DAG
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id | Yes | ||
fields | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
},
"fields": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
}
},
"required": [
"dag_id"
],
"title": "get_dag_detailsArguments",
"type": "object"
}