downloadFile
Transfer files securely from a remote SSH host to a local destination using MCP SSH Agent. Specify the host, remote file path, and local destination to download files efficiently.
Instructions
Downloads a file from an SSH host
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostAlias | Yes | Alias or hostname of the SSH host | |
localPath | Yes | Path to the local destination | |
remotePath | Yes | Path on the remote host |
Input Schema (JSON Schema)
{
"properties": {
"hostAlias": {
"description": "Alias or hostname of the SSH host",
"type": "string"
},
"localPath": {
"description": "Path to the local destination",
"type": "string"
},
"remotePath": {
"description": "Path on the remote host",
"type": "string"
}
},
"required": [
"hostAlias",
"remotePath",
"localPath"
],
"type": "object"
}