ssh_execute
Execute commands on a remote server via SSH using a specified connection ID. Define the command and working directory to streamline remote server management tasks.
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"
}