delete_connection
Remove a specific connection by its ID from Apache Airflow using the MCP Server, ensuring clean and efficient management of Airflow connections.
Instructions
Delete a connection by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conn_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conn_id": {
"title": "Conn Id",
"type": "string"
}
},
"required": [
"conn_id"
],
"title": "delete_connectionArguments",
"type": "object"
}