ssh_download
Download files from a remote SSH server to a local destination path using server name and file paths. Simplify secure file transfers with the MCP SSH Manager tool.
Instructions
Download file from remote SSH server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
localPath | Yes | Local destination path | |
remotePath | Yes | Remote file path | |
server | Yes | Server name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"localPath": {
"description": "Local destination path",
"type": "string"
},
"remotePath": {
"description": "Remote file path",
"type": "string"
},
"server": {
"description": "Server name",
"type": "string"
}
},
"required": [
"server",
"remotePath",
"localPath"
],
"type": "object"
}