bash
Execute bash commands on specified instances within the Scrapybara MCP server to manage and control virtual Ubuntu desktops efficiently.
Instructions
Run a bash command in a Scrapybara instance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | The command to run in the instance shell. | |
instance_id | Yes | The ID of the instance to run the command on. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "The command to run in the instance shell.",
"type": "string"
},
"instance_id": {
"description": "The ID of the instance to run the command on.",
"type": "string"
}
},
"required": [
"instance_id",
"command"
],
"type": "object"
}