execute_command
Run terminal commands and retrieve output using a secure and standardized interface. Specify the command and optional timeout to execute tasks efficiently.
Instructions
Execute terminal command and return results
Args:
command: Command line command to execute
timeout: Command timeout in seconds, default is 30 seconds
Returns:
Output of the command execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | ||
timeout | No |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"title": "Command",
"type": "string"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
}
},
"required": [
"command"
],
"title": "execute_commandArguments",
"type": "object"
}