orgo_bash
Execute bash commands on virtual computers for file operations, package installation, script execution, and system state checking through the Orgo MCP Server.
Instructions
Execute a bash command on the computer.
Useful for file operations, installing packages, running scripts,
checking system state, etc.
Args:
params (BashInput): Input containing:
- computer_id (str): Computer ID
- command (str): Bash command to run
Returns:
str: Command output (stdout and stderr combined)
Examples:
- "Run ls -la" -> params with command="ls -la"
- "Install requests" -> params with command="pip install requests"
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |