cloud-sandbox
Installation
SKILL.md
Cloud Sandbox
Create, configure, and manage isolated E2B execution environments for secure code development and testing.
Quick Start
// Create a Node.js sandbox
const sandbox = await mcp__flow-nexus__sandbox_create({
template: "node",
name: "dev-environment",
env_vars: { NODE_ENV: "development" },
install_packages: ["express", "lodash"],
timeout: 3600
});