npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-virtualbox

v1.0.0

Published

VirtualBox MCP server for Claude - vision-loop + text-based VM control

Readme

mcp-virtualbox

Let AI see, click, type, and fully operate virtual machines - from bare metal OS installation to daily use, no human needed.

TL;DR

{
  "mcpServers": {
    "mcp-virtualbox": {
      "command": "npx",
      "args": ["-y", "mcp-virtualbox"]
    }
  }
}

Add to .mcp.json (Claude Code) or claude_desktop_config.json (Claude Desktop). Requires VirtualBox 7.x and Node.js 18+.

Provide your own OS installer ISO - just tell the AI where it is and what OS to install.


What is this

An MCP server that wraps VirtualBox, giving AI assistants 30 tools to create, install, and operate VMs through two modes:

  1. Vision loop - screenshot, read screen, send keyboard/mouse. Works with any OS, any installer, any GUI.
  2. Text mode - SSH, WinRM, or Guest Additions for fast command execution.

How it works

vm_create("WindowsXP")          -> VM with correct settings (IDE, 512MB RAM)
vm_attach_media(iso)             -> Mount installer ISO
vm_install_guide("xp")           -> Step-by-step guide with gotchas
vm_screenshot()                  -> AI sees "Welcome to Setup"
vm_keyboard_scancode("enter")    -> AI presses Enter
  ... repeat until installed ...
vm_guest_exec("cmd.exe", ["/c", "dir"])  -> Text-based control

Tools

30 tools across 6 categories:

| Category | Tools | |----------|-------| | Lifecycle (15) | vm_list vm_info vm_create vm_start vm_stop vm_delete vm_pause vm_resume vm_reset vm_attach_media vm_snapshot vm_modify vm_list_ostypes vm_shared_folder_add vm_shared_folder_remove | | Display (2) | vm_screenshot vm_screen_info | | Input (3) | vm_keyboard_scancode vm_keyboard_type vm_mouse_click | | Guest Control (3) | vm_guest_exec vm_guest_copy_to vm_guest_copy_from | | Network (6) | vm_exec_ssh vm_exec_winrm vm_get_guest_ip vm_wait_for_guest_additions vm_wait_for_network vm_add_nat_port_forward | | Knowledge (1) | vm_install_guide |

Testing status

| | Windows XP | Windows 7/10/11 | Ubuntu/Linux | |--|:--:|:--:|:--:| | OS install (vision loop) | x | - | - | | Guest Additions | x | - | - | | Guest exec | x | - | - | | SSH | - | - | - | | WinRM | - | - | - | | Screenshot + keyboard | x | - | - | | Mouse click | x | - | - |

Host platforms: Windows x64 (tested), Linux/macOS (should work).

x = tested, - = should work, not yet verified

Environment variables

| Variable | Default | |----------|---------| | VBOXMANAGE_PATH | Auto-detected | | VBOXMANAGE_DRY_RUN | false | | VBOXMANAGE_DEBUG | false |

From source

git clone https://github.com/chryaner/mcp-virtualbox.git
cd mcp-virtualbox
npm install && npm run build

Python 3 with vboxapi module is optional (only needed for vm_mouse_click).

License

MIT