delete_dag
Use this tool to remove a specific DAG (Directed Acyclic Graph) from Apache Airflow by specifying the DAG ID. Streamlines DAG cleanup and management within the MCP Server for Apache Airflow ecosystem.
Instructions
Delete a DAG
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": "delete_dagArguments",
"type": "object"
}