Windows CLI MCP Server

update_ssh_connection

Update an existing SSH connection

Input Schema

NameRequiredDescriptionDefault
connectionConfigNo
connectionIdNoID 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" }