ssh_upload_file
Transfer a file from your local system to a remote server using an active SSH connection. Specify the local file path and the desired remote destination for secure file uploads.
Instructions
Upload a file to the remote server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | ID of an active SSH connection | |
localPath | Yes | Path to the local file | |
remotePath | Yes | Path where the file should be saved on the remote server |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "ID of an active SSH connection",
"type": "string"
},
"localPath": {
"description": "Path to the local file",
"type": "string"
},
"remotePath": {
"description": "Path where the file should be saved on the remote server",
"type": "string"
}
},
"required": [
"connectionId",
"localPath",
"remotePath"
],
"type": "object"
}