Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that gives AI agents direct control over QEMU virtual machines.

README.md

qemu-mcp-server

![npm](https://www.npmjs.com/package/qemu-mcp-server)

An MCP server that gives AI agents direct control over QEMU virtual machines.

Create, boot, snapshot, inspect, and destroy VMs through standard MCP tool calls. The server manages QEMU processes and communicates through QMP (QEMU Machine Protocol).

Quick start

1. Install QEMU

# Ubuntu/Debian
sudo apt install qemu-system-arm qemu-system-x86

# Fedora
sudo dnf install qemu-system-aarch64 qemu-system-x86

# macOS
brew install qemu

# Windows -- use WSL (see "Windows support" below)

2. Install the server

npm install -g qemu-mcp-server

Or run without installing: ``bash npx qemu-mcp-server ``

Or from source: ``bash git clone https://github.com/Abdalla-Eldoumani/qemu-mcp-server cd qemu-mcp-server npm install && npm run build ``

The server checks for QEMU on startup and tells you exactly what to install if anything is missing.

3. Connect your AI client

Claude Desktop -- add to your MCP config: ``json { "mcpServers": { "qemu": { "command": "qemu-mcp-server" } } } ``

Cursor -- add to .cursor/mcp.json: ``json { "mcpServers": { "qemu": { "command": "npx", "args": ["qemu-mcp-server"] } } } ``

Claude Code: ``bash claude mcp add qemu -- npx qemu-mcp-server ``

4. Try it

Ask your AI agent:

"Create an aarch64 VM with 128MB of memory and tell me what you see on the console."

The agent will call create_vm, wait for output, read the console, and report back.

What agents can do

Create and manage VMs

  • create_vm -- Start a VM with specified architecture, memory, and disk/kernel
  • destroy_vm -- Stop and clean up a VM
  • list_vms -- See all running VMs

Control execution

  • pause_vm, resume_vm, reset_vm, shutdown_vm

Snapshots (requires a qcow2 disk image)

  • save_snapshot, load_snapshot, delete_snapshot, list_snapshots

Inspect state

  • get_vm_status, get_vm_info, read_console, dump_memory

Run commands

  • send_console_input -- Type into the serial console
  • wait_for_console_output -- Wait for expected text in output

Example: booting a Linux kernel

If you have a Linux kernel image and root filesystem:

"Create an x86_64 VM with 512MB memory, disk image /path/to/rootfs.qcow2, and kernel /path/to/bzImage with kernel args 'console=ttyS0 root=/dev/vda'."

The agent can then interact with the Linux system through the serial console using send_console_input and wait_for_console_output.

Windows support

This server uses Unix sockets for QMP communication, so it does not run natively on Windows. Use WSL instead:

  1. Install WSL: wsl --install in PowerShell
  2. Install QEMU inside WSL: sudo apt install qemu-system-arm qemu-system-x86
  3. Install Node.js inside WSL
  4. Run the server inside WSL

For Claude Desktop or Cursor on Windows, configure the MCP server to run through WSL: ``json { "mcpServers": { "qemu": { "command": "wsl", "args": ["node", "/path/in/wsl/to/qemu-mcp-server/dist/index.js"] } } } ``

Configuration

All optional. Set via environment variables:

| Variable | Default | What it does | |----------|---------|-------------| | TRANSPORT | stdio | "stdio" or "http" | | HTTP_PORT | 3000 | Port for HTTP transport | | QEMU_BINARY_DIR | (empty) | Custom path to QEMU binaries | | VM_TEMP_DIR | os.tmpdir() | Where to store sockets and temp files | | MAX_VMS | 10 | Max concurrent VMs | | QMP_TIMEOUT_MS | 30000 | Command timeout (ms) | | CONSOLE_BUFFER_LINES | 1000 | Console output buffer size per VM | | LOG_LEVEL | info | debug, info, warn, error |

Supported architectures

  • aarch64 (ARM64)
  • x86_64

Requirements

  • Node.js 18+ (20+ recommended)
  • QEMU installed and on PATH
  • Linux, macOS, or Windows with WSL

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.