ssh_upload
Transfer files from a local system to a remote server via SSH. Specify server name, local file path, and remote destination path to securely upload files across connected systems.
Instructions
Upload file to remote SSH server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| localPath | Yes | Local file path | |
| remotePath | Yes | Remote destination path | |
| server | Yes | Server name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"localPath": {
"description": "Local file path",
"type": "string"
},
"remotePath": {
"description": "Remote destination path",
"type": "string"
},
"server": {
"description": "Server name",
"type": "string"
}
},
"required": [
"server",
"localPath",
"remotePath"
],
"type": "object"
}