ssh_run
Execute remote commands over SSH to run non-interactive operations on servers and retrieve output, exit codes, and error messages for remote administration tasks.
Instructions
Runs a non-interactive command remotely over SSH and returns stdout, stderr, and exit code
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Command to run remotely |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to run remotely",
"minLength": 1,
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}