patch_dag
Modify DAG configurations in Apache Airflow by updating parameters such as pause status and tags, using the MCP Server's standardized interface.
Instructions
Update a DAG
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id | Yes | ||
is_paused | No | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
},
"is_paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Paused"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"required": [
"dag_id"
],
"title": "patch_dagArguments",
"type": "object"
}