airflow-mcp-server

by abhishekbhakat
Verified

update_dag_run_state

update_dag_run_state

Input Schema

NameRequiredDescriptionDefault
dag_idNo
dag_run_idNo
stateNo

Input Schema (JSON Schema)

{ "properties": { "dag_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Dag Id" }, "dag_run_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Dag Run Id" }, "state": { "anyOf": [ { "enum": [ "success", "failed", "queued" ], "type": "string" }, { "type": "null" } ], "default": null, "title": "State" } }, "title": "update_dag_run_state_input", "type": "object" }