execute_command
Execute shell commands on remote Linux or Windows systems via SSH, returning stdout, stderr, and exit codes for efficient remote system management.
Instructions
Run a shell command in an existing SSH session and return stdout/stderr/exitCode.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Shell command to execute | |
connection_id | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"command": {
"description": "Shell command to execute",
"type": "string"
},
"connection_id": {
"type": "string"
}
},
"required": [
"connection_id",
"command"
],
"type": "object"
}