ssh_list_files
List files in a directory on a remote server via an active SSH connection. Specify the connection ID and remote path to retrieve the directory contents quickly and efficiently.
Instructions
List files in a directory on the remote server
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| connectionId | Yes | ID of an active SSH connection | |
| remotePath | Yes | Path to the directory on the remote server | 
Input Schema (JSON Schema)
{
  "properties": {
    "connectionId": {
      "description": "ID of an active SSH connection",
      "type": "string"
    },
    "remotePath": {
      "description": "Path to the directory on the remote server",
      "type": "string"
    }
  },
  "required": [
    "connectionId",
    "remotePath"
  ],
  "type": "object"
}