Skip to content

ashishgituser/bunkervm

BunkerVM

BunkerVM

Self-hosted AI sandbox with hardware isolation.
Your data never leaves your machine. Not a container — a real VM.

PyPI CI Stars Isolation Boot time Python License

Your AI agent can run rm -rf /. Let it — inside a bunker.


Quickstart — 3 lines

pip install bunkervm
from bunkervm import run_code

result = run_code("print('Hello from a microVM!')")
print(result)  # Hello from a microVM!

One function. VM boots (~3s), code runs, VM dies. Your host was never touched.


The Problem

AI agents generate and execute code on your machine. One bad LLM output and your files, credentials, or entire system could be gone. Docker shares the kernel — container escapes are real. Cloud sandboxes send your data to someone else's server.

The fix: BunkerVM boots a Firecracker microVM in ~3 seconds, runs the code inside a throwaway Linux sandbox with its own kernel, and destroys everything after. Self-hosted. Your data stays on your machine.


Why BunkerVM?

BunkerVM E2B Docker
Self-hosted ✅ Runs on your machine ❌ Cloud only ✅ Self-hosted
Data privacy ✅ Never leaves your network ❌ Sent to cloud ✅ Local
Isolation 🔒 Hardware (KVM) — own kernel 🔒 Hardware (Firecracker) ⚠️ Shared kernel
Escape risk Near zero Near zero Container escapes exist
Cost Free forever Per-execution pricing Free
Setup pip install bunkervm API key + cloud account Dockerfile + build + run
Boot time ~3s ~1s (remote) ~0.5s
Offline / air-gapped ✅ Works without internet ❌ Requires internet ✅ Works offline
License Apache-2.0 Proprietary (client only OSS) Apache-2.0

Choose BunkerVM when: your data can't leave your network (finance, healthcare, defense, government), you want zero cloud costs, or you need air-gapped deployments.


Demo — LangGraph Multi-Agent Pipeline

3 AI agents, 3 isolated Firecracker VMs, running in parallel. Build, test, and security-scan — then nuke one VM and watch the others survive.

https://github.com/ashishgituser/bunkervm/raw/main/docs/LangGraphMultiAgentTest.mp4


Framework Integrations

Every integration auto-boots a Firecracker VM and exposes 6 sandboxed toolsrun_command, write_file, read_file, list_directory, upload_file, download_file.

All toolkits inherit from BunkerVMToolsBase — identical behaviour regardless of framework.

LangChain / LangGraph

pip install bunkervm[langgraph] langchain-openai
from langchain_openai import ChatOpenAI
from langchain.agents import create_agent
from bunkervm.langchain import BunkerVMToolkit

with BunkerVMToolkit() as toolkit:                  # boots VM (~3s)
    agent = create_agent(
        ChatOpenAI(model="gpt-4o"),
        tools=toolkit.get_tools(),                  # 6 sandbox tools
    )
    agent.invoke({"messages": [("user", "Find primes under 100")]})
# VM auto-destroyed
Agent execution output
⏳ Booting sandbox VM...  ✅ Sandbox ready

→ write_file: /tmp/primes.py (312 bytes)
→ run_command: python3 /tmp/primes.py  ← OK (42ms)

🤖 [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47,
    53, 59, 61, 67, 71, 73, 79, 83, 89, 97]

🧹 Sandbox destroyed.

OpenAI Agents SDK

pip install bunkervm[openai-agents]
from agents import Agent, Runner
from bunkervm.openai_agents import BunkerVMTools

tools = BunkerVMTools()                              # boots VM (~3s)
agent = Agent(
    name="coder",
    instructions="You write and run code inside a secure VM.",
    tools=tools.get_tools(),                         # 6 sandbox tools
)
result = Runner.run_sync(agent, "First 20 Fibonacci numbers")
print(result.final_output)
tools.stop()
Agent execution output
⏳ Booting sandbox VM...  ✅ Sandbox ready

→ write_file: /tmp/fib.py (198 bytes)
→ run_command: python3 /tmp/fib.py  ← OK (38ms)

🤖 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377,
   610, 987, 1597, 2584, 4181

🧹 Sandbox destroyed.

CrewAI

pip install bunkervm[crewai]
from crewai import Agent, Task, Crew
from bunkervm.crewai import BunkerVMCrewTools

tools = BunkerVMCrewTools()                          # boots VM (~3s)
coder = Agent(
    role="Software Engineer",
    goal="Write and test code inside a secure sandbox",
    tools=tools.get_tools(),                         # 6 sandbox tools
)
task = Task(description="Bubble sort a random list", agent=coder,
            expected_output="The sorted list")
Crew(agents=[coder], tasks=[task]).kickoff()
tools.stop()
Agent execution output
⏳ Booting sandbox VM...  ✅ Sandbox ready

🔧 write_file → /tmp/sort.py  ✅ 403 bytes
🔧 run_command → python3 /tmp/sort.py
   Original: [83, 11, 25, 19, 86, 52, 97, 5, 70, 69]
   Sorted:   [5, 11, 19, 25, 52, 69, 70, 83, 86, 97]

🧹 Sandbox destroyed.

Install all integrations

pip install bunkervm[all]    # LangChain + OpenAI Agents SDK + CrewAI

Full working examples: examples/


VS Code + Copilot

Every line of code Copilot executes — hardware-isolated.

Option A: BunkerDesktop (recommended for Windows)

Just install BunkerDesktop and it works. The engine runs in the background and VS Code auto-connects.

Option B: Manual setup (2 commands)

pip install bunkervm
bunkervm vscode-setup

That's it. Reload VS Code (Ctrl+Shift+P → "Reload Window"). Copilot Chat now has 8 sandboxed tools.

Windows users: These commands run in your normal PowerShell terminal. vscode-setup auto-detects Windows, creates an isolated Python environment inside WSL, installs BunkerVM there, and generates the correct config. You don't need to touch WSL directly.

How it works

  1. bunkervm vscode-setup generates .vscode/mcp.json — auto-detects your OS
  2. On Windows: creates ~/.bunkervm/venv inside WSL, installs BunkerVM there automatically
  3. VS Code starts BunkerVM as an MCP server (via WSL on Windows, directly on Linux)
  4. A Firecracker microVM boots (~3s) with its own Linux kernel
  5. Copilot Chat gets 8 tools: sandbox_exec, sandbox_write_file, sandbox_read_file, sandbox_list_dir, sandbox_upload_file, sandbox_download_file, sandbox_status, sandbox_reset
  6. When Copilot writes code → it runs inside the VM → your host is never touched

Try it

Open Copilot Chat and ask:

  • "Write a Python script that finds primes under 1000, save it, and run it in the sandbox"
  • "Fetch the top 3 Hacker News posts in the sandbox"
  • "Run uname -a in the sandbox to show me the VM's kernel"

Demo


How It Works

Your AI Agent
     │
     ▼
  bunkervm        ──vsock──▶   Firecracker MicroVM
  (host)                       ┌──────────────────┐
                               │  Alpine Linux     │
                               │  Python 3.12      │
                               │  Full toolchain   │
                               │  exec_agent       │
                               └──────────────────┘
                               Hardware isolation (KVM)
                               Destroyed after use
  • Firecracker — Amazon's micro-VM engine (powers AWS Lambda & Fargate)
  • vsock — Zero-config host↔VM communication (no networking required)
  • ~100MB bundle — Firecracker + kernel + rootfs, auto-downloaded on first run

BunkerDesktop — One-Click Sandbox Manager (Windows)

BunkerDesktop — Desktop App

BunkerDesktop is the easiest way to run BunkerVM. Download the installer, double-click, done.

  • Native Windows app — no browser, no terminal, no Docker
  • Automatic WSL2 + backend setup — the installer handles everything
  • Dashboard — create, monitor, and destroy sandboxes with a click
  • Live logs — filter by sandbox, log level, auto-scroll
  • Start on login — engine runs in the background, always ready

Install

  1. Download BunkerDesktopSetup.exe from Releases
  2. Run the installer — it sets up WSL2, installs the backend, creates shortcuts
  3. Launch BunkerDesktop from your desktop

Windows may block the installer because it's not yet code-signed. SmartScreen: Click "More info""Run anyway". Code signing is coming soon.


More Features

Reusable Sandbox — Keep the VM alive for multiple runs
from bunkervm import Sandbox

with Sandbox() as sb:
    sb.run("x = 42")
    sb.run("y = x * 2")
    result = sb.run("print(f'{x} * 2 = {y}')")
    print(result)  # 42 * 2 = 84

State persists between run() calls — variables, imports, everything stays.

Multi-VM Support — Run multiple sandboxes simultaneously
from bunkervm import VMPool

pool = VMPool(max_vms=5)
pool.start("agent-1", cpus=2, memory=1024)
pool.start("agent-2", cpus=1, memory=512)

pool.client("agent-1").exec("echo 'I am agent 1'")
pool.client("agent-2").exec("echo 'I am agent 2'")
pool.stop_all()
Claude Desktop (MCP)

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "bunkervm": {
      "command": "bunkervm",
      "args": ["server"]
    }
  }
}

Windows (WSL2):

{
  "mcpServers": {
    "bunkervm": {
      "command": "wsl",
      "args": ["-d", "Ubuntu", "--", "bunkervm", "server"]
    }
  }
}
Web Dashboard
bunkervm server --transport sse --dashboard
# Dashboard at http://localhost:3001/dashboard

Real-time monitoring: VM status, CPU, memory, live audit log, and reset controls.

MCP Tools — 8 tools exposed via MCP server
Tool Description
sandbox_exec Run any shell command
sandbox_write_file Create or edit files
sandbox_read_file Read files
sandbox_list_dir Browse directories
sandbox_upload_file Upload files host → VM
sandbox_download_file Download files VM → host
sandbox_status Check VM health, CPU, RAM
sandbox_reset Wipe sandbox, start fresh
CLI Reference
bunkervm demo                        # See it in action
bunkervm run script.py               # Run a script in a sandbox
bunkervm run -c "print(42)"          # Run inline code
bunkervm server --transport sse      # Start MCP server
bunkervm info                        # Check system readiness
bunkervm vscode-setup                # Set up VS Code MCP integration
bunkervm enable-network              # One-time: enable VM networking (needs sudo)

Options:
  --cpus N          vCPUs (default: 1 for run, 2 for server)
  --memory MB       RAM in MB (default: 512 for run, 2048 for server)
  --no-network      Disable internet inside VM
  --timeout SECS    Execution timeout (default: 30)
  --dashboard       Enable web dashboard (server mode)

Install

Desktop Users (Windows)

Download BunkerDesktopSetup.exe from Releases — everything is automatic.

Developers

pip install bunkervm                  # Core
pip install bunkervm[langgraph]       # + LangGraph/LangChain
pip install bunkervm[openai-agents]   # + OpenAI Agents SDK
pip install bunkervm[crewai]          # + CrewAI
pip install bunkervm[all]             # Everything

Requirements: Linux with KVM, or Windows WSL2 with nested virtualization. Python 3.10+.

Need /dev/kvm access? Run bunkervm info to diagnose, or sudo usermod -aG kvm $USER then re-login.

WSL2 Setup (Windows)

Add to %USERPROFILE%\.wslconfig:

[wsl2]
nestedVirtualization=true

Then restart WSL: wsl --shutdown

Troubleshooting
Problem Solution
bunkervm: command not found with sudo sudo $(which bunkervm) demo or add user to kvm group
/dev/kvm not found sudo modprobe kvm or enable nested virtualization in WSL2
Permission denied: /dev/kvm sudo usermod -aG kvm $USER then re-login
Bundle download fails Download from Releases~/.bunkervm/bundle/
VM fails to start bunkervm info — diagnoses all prerequisites
Building from source
git clone https://github.com/ashishgituser/bunkervm.git
cd bunkervm
sudo bash build/setup-firecracker.sh
sudo bash build/build-sandbox-rootfs.sh
pip install -e ".[dev]"
bunkervm demo

Contributing

See CONTRIBUTING.md for guidelines.

Security

See SECURITY.md for our security model and how to report vulnerabilities.

License

Apache-2.0 — Free for personal, open-source, and commercial use.


If BunkerVM helps you ship safer agents, give it a star ⭐

About

Self-hosted AI sandbox with hardware isolation. Firecracker microVMs give each AI agent its own Linux machine — boots in 3s, destroyed after use. Works with LangChain, OpenAI, CrewAI, VS Code Copilot. No cloud. No Docker. Free (Apache-2.0).

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors