MCP Server for Apache Airflow

get_task_instance

Get details of a specific task instance

Input Schema

NameRequiredDescriptionDefault
dag_idYesThe ID of the DAG
dag_run_idYesThe ID of the DAG run
task_idYesThe ID of the task

Input Schema (JSON Schema)

{ "properties": { "dag_id": { "description": "The ID of the DAG", "type": "string" }, "dag_run_id": { "description": "The ID of the DAG run", "type": "string" }, "task_id": { "description": "The ID of the task", "type": "string" } }, "required": [ "dag_id", "task_id", "dag_run_id" ], "type": "object" }