Skip to main content
E2BRuntime connects to a live E2B sandbox by id. Create it with E2B’s CLI or SDK. Programs accessing Mirage mounts as ordinary files require Mirage and FUSE inside the sandbox, with mounts at the same paths as the host workspace. Sandbox creation and cleanup remain with your application. See the Sandbox overview for the shared image and matching mount-prefix setup.

Install

Configure

api_key is optional when E2B_API_KEY is set. The runtime connects on the first captured line and reuses the sandbox client until the workspace closes. Closing the workspace leaves the sandbox running. The same configuration in application code is:
The runtime uses E2B’s AsyncSandbox, with independent stdin and output for concurrent commands. Use the native E2B SDK runtime for E2B commands. SSH remains useful for general remote hosts and persistent MCP stdio connections. Templates, CPU and memory sizing, networking, and lifecycle controls remain E2B settings.

Standard input

Piped input goes directly to stdin, followed by EOF. Commands without input start with stdin closed.
Cancellation attempts to kill the foreground E2B command and disconnects its event stream. It does not guarantee termination of every descendant process. E2B also applies its SDK command timeout, currently 60 seconds by default, to both runaway and legitimate long-running commands. See Resource limits.