update_ssh_connection
Update an existing SSH connection on the Windows CLI MCP Server by modifying details such as host, port, username, password, or private key path for secure command-line access.
Instructions
Update an existing SSH connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionConfig | No | ||
connectionId | No | ID of the SSH connection to update |
Input Schema (JSON Schema)
{
"properties": {
"connectionConfig": {
"properties": {
"host": {
"description": "Host of the SSH connection",
"type": "string"
},
"password": {
"description": "Password for the SSH connection",
"type": "string"
},
"port": {
"description": "Port of the SSH connection",
"type": "number"
},
"privateKeyPath": {
"description": "Path to the private key for the SSH connection",
"type": "string"
},
"username": {
"description": "Username for the SSH connection",
"type": "string"
}
},
"required": [
"connectionId",
"connectionConfig"
],
"type": "object"
},
"connectionId": {
"description": "ID of the SSH connection to update",
"type": "string"
}
},
"type": "object"
}