execute_command
Run commands on a connected VPS via SSH to automate server setup, manage services, configure domains, or integrate CI/CD pipelines.
Instructions
Execute a command on the connected VPS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}