ToolBox MCP Server

by xiaoguomeiyitian
Verified

sftp_tool

Input Schema

NameRequiredDescriptionDefault
actionYesAction: upload or download
localPathYesLocal file path (absolute)
remotePathYesRemote file path
serverNameYesSSH 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" }