download-file
Retrieve files from an FTP server by specifying the remote file path. Enables direct access to server-stored files with simple, structured input.
Instructions
Download a file from the FTP server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
remotePath | Yes | Path of the file on the FTP server |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"remotePath": {
"description": "Path of the file on the FTP server",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}