Skip to main content
microsandbox is built for AI agents. The SDK and CLI give you full programmatic control, but there are two additional ways to connect agents directly: Agent Skills for coding assistants and an MCP server for any MCP-compatible client.

Agent Skills

Agent Skills teach AI coding agents how to use microsandbox without any custom integration code. Once installed, the agent can create sandboxes, run commands, manage files, and control the full sandbox lifecycle through natural language. Works with Claude Code, Cursor, Codex, Gemini CLI, GitHub Copilot, and other agents that support the skills format.
npx skills add superradcompany/skills
This installs a set of skill files into your project that the agent reads as context. No server process, no configuration, just files that describe how to use microsandbox.

MCP Server

The microsandbox MCP server exposes microsandbox as a set of structured tool calls over the Model Context Protocol. Any MCP-compatible client can use it to manage sandbox lifecycle, execute commands, access the filesystem, work with volumes, and monitor sandbox state.
claude mcp add --transport stdio microsandbox -- npx -y microsandbox-mcp
Once connected, the agent gets access to tools for creating sandboxes, running commands inside them, reading and writing files, and managing the sandbox lifecycle, all through the MCP protocol.