MCP Server for Apache Airflow

list_import_errors

List all import errors

Input Schema

NameRequiredDescriptionDefault
limitNoThe numbers of items to return (default: 100)
offsetNoThe number of items to skip before starting to collect the result set
order_byNoThe name of the field to order the results by. Prefix with - to reverse sort order

Input Schema (JSON Schema)

{ "properties": { "limit": { "description": "The numbers of items to return (default: 100)", "minimum": 1, "type": "integer" }, "offset": { "description": "The number of items to skip before starting to collect the result set", "minimum": 0, "type": "integer" }, "order_by": { "description": "The name of the field to order the results by. Prefix with - to reverse sort order", "type": "string" } }, "type": "object" }