create_dataset_event
Generate dataset events in Apache Airflow to track and manage data dependencies, enabling seamless workflow orchestration and monitoring through the MCP server.
Instructions
Create dataset event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_uri | Yes | ||
extra | No |
Input Schema (JSON Schema)
{
"properties": {
"dataset_uri": {
"title": "Dataset Uri",
"type": "string"
},
"extra": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Extra"
}
},
"required": [
"dataset_uri"
],
"title": "create_dataset_eventArguments",
"type": "object"
}