ssh_connect_with_credential
Establish SSH connections using pre-saved credentials to securely access remote servers for file transfers, shell sessions, and Docker management without manual authentication.
Instructions
Connect to SSH server using saved credentials
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | Unique identifier for this connection | |
credentialId | Yes | Stored credential ID to use |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "Unique identifier for this connection",
"type": "string"
},
"credentialId": {
"description": "Stored credential ID to use",
"type": "string"
}
},
"required": [
"credentialId",
"connectionId"
],
"type": "object"
}