get_connection
Retrieve a specific connection by its ID using the MCP Server for Apache Airflow. Facilitates direct access to connection details for streamlined DAG and API operations.
Instructions
Get 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": "get_connectionArguments",
"type": "object"
}