create_sandbox
Provision an isolated cloud Linux VM to run untrusted code safely. Python 3, Node.js 22, git, and build tools come preinstalled; the sandbox auto-destroys after a set timeout, leaving no trace.
Instructions
Create an isolated cloud sandbox — a dedicated virtual machine you can run commands in. Returns once the sandbox is ready. Python 3, Node.js 22, git and a build toolchain are pre-installed. The sandbox is destroyed automatically after timeout_minutes; nothing inside it survives that. Use this before running any code you would not want to run on the local machine.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional label to identify this sandbox later. | |
| size | No | small = 2 vCPU/4 GB, medium = 4 vCPU/8 GB, large = 8 vCPU/16 GB. Default: small. | |
| timeout_minutes | No | Destroy the sandbox automatically after this many minutes (default 15, max 1440 — 24 hours). |