ssh_download_file
Download files from a remote server via SSH by specifying the connection ID, remote file path, and local save location.
Instructions
Download a file from the remote server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | ID of an active SSH connection | |
localPath | Yes | Path where the file should be saved locally | |
remotePath | Yes | Path to the file on the remote server |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "ID of an active SSH connection",
"type": "string"
},
"localPath": {
"description": "Path where the file should be saved locally",
"type": "string"
},
"remotePath": {
"description": "Path to the file on the remote server",
"type": "string"
}
},
"required": [
"connectionId",
"remotePath",
"localPath"
],
"type": "object"
}