create_ssh_connection
Establish a new SSH connection by configuring host, port, username, password, and private key path securely on the Windows CLI MCP Server for remote command execution.
Instructions
Create a new SSH connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionConfig | No | ||
connectionId | No | ID 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"
}