list_variables
Retrieve and manage Airflow variables by listing their keys, values, and descriptions. Supports pagination, sorting, and customizable limits for efficient data access.
Instructions
[Tool Role]: Lists all variables stored in Airflow.
Args: limit: Maximum number of variables to return (default: 20) offset: Number of variables to skip for pagination (default: 0) order_by: Order variables by field (key, description) (default: key)
Returns: List of variables with their keys, values, and descriptions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
order_by | No | key |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"order_by": {
"default": "key",
"title": "Order By",
"type": "string"
}
},
"type": "object"
}