execute_remote_command
Remotely execute shell commands across multiple operating systems, ensuring compatibility with Windows and Unix platforms, while specifying the working directory for execution.
Instructions
Execute a command on the host machine
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute | |
cwd | No | Working directory for command execution |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"cwd": {
"description": "Working directory for command execution",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}