ssh_list_files
List files and directories on local or remote servers via SSH connection to browse directory contents and manage file systems.
Instructions
List files and directories on local or remote server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | SSH connection ID (use "local" for local files) | |
remotePath | Yes | Directory path to list | |
showHidden | No | Show hidden files |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "SSH connection ID (use \"local\" for local files)",
"type": "string"
},
"remotePath": {
"description": "Directory path to list",
"type": "string"
},
"showHidden": {
"default": false,
"description": "Show hidden files",
"type": "boolean"
}
},
"required": [
"connectionId",
"remotePath"
],
"type": "object"
}