sftp_tool
Connect to an SSH server to upload or download files between local and remote paths using this automation tool from the ToolBox MCP Server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: upload or download | |
| localPath | Yes | Local file path (absolute) | |
| remotePath | Yes | Remote file path | |
| serverName | Yes | SSH server name |
Input Schema (JSON Schema)
{
"description": "Connect to SSH server and upload/download files",
"name": "sftp_tool",
"properties": {
"action": {
"description": "Action: upload or download",
"enum": [
"upload",
"download"
],
"type": "string"
},
"localPath": {
"description": "Local file path (absolute)",
"type": "string"
},
"remotePath": {
"description": "Remote file path",
"type": "string"
},
"serverName": {
"description": "SSH server name",
"type": "string"
}
},
"required": [
"serverName",
"action",
"localPath",
"remotePath"
],
"type": "object"
}