Windows CLI MCP Server

create_ssh_connection

Create a new SSH connection

Input Schema

NameRequiredDescriptionDefault
connectionConfigNo
connectionIdNoID of the SSH connection

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", "type": "string" } }, "type": "object" }