sshExecute
Execute commands on remote servers via SSH to manage infrastructure, run administrative tasks, and perform system operations from a centralized interface.
Instructions
Execute a command on a remote server via SSH
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Command to execute | |
| host | Yes | SSH host | |
| password | Yes | SSH password | |
| port | No | SSH port | |
| username | Yes | SSH username |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"host": {
"description": "SSH host",
"type": "string"
},
"password": {
"description": "SSH password",
"type": "string"
},
"port": {
"default": 22,
"description": "SSH port",
"type": "number"
},
"username": {
"description": "SSH username",
"type": "string"
}
},
"required": [
"host",
"username",
"password",
"command"
],
"type": "object"
}