ssh_execute
Execute commands on remote SSH servers to perform administrative tasks, run scripts, or manage systems remotely using established SSH connections.
Instructions
Execute a command on a remote SSH server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute on remote server | |
connectionId | Yes | SSH connection ID | |
cwd | No | Working directory for command execution |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute on remote server",
"type": "string"
},
"connectionId": {
"description": "SSH connection ID",
"type": "string"
},
"cwd": {
"description": "Working directory for command execution",
"type": "string"
}
},
"required": [
"connectionId",
"command"
],
"type": "object"
}