ssh_file_info
Retrieve file details like size and permissions from remote servers via SSH connections, enabling quick file system inspection without direct server access.
Instructions
Get file information (size, permissions, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | SSH connection ID (use "local" for local files) | |
filePath | Yes | File path to get info for |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "SSH connection ID (use \"local\" for local files)",
"type": "string"
},
"filePath": {
"description": "File path to get info for",
"type": "string"
}
},
"required": [
"connectionId",
"filePath"
],
"type": "object"
}