update_connection
Modify connection details in Apache Airflow using the MCP Server, allowing users to update attributes like host, port, login, password, and schema by specifying the connection ID.
Instructions
Update a connection by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conn_id | Yes | ||
conn_type | No | ||
extra | No | ||
host | No | ||
login | No | ||
password | No | ||
port | No | ||
schema | No |
Input Schema (JSON Schema)
{
"properties": {
"conn_id": {
"title": "Conn Id",
"type": "string"
},
"conn_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Conn Type"
},
"extra": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Extra"
},
"host": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Host"
},
"login": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Login"
},
"password": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Password"
},
"port": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Port"
},
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Schema"
}
},
"required": [
"conn_id"
],
"title": "update_connectionArguments",
"type": "object"
}