AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Nehemiah

mcp-boringcomputers-nehemiah · by boringcomputers

On-demand Linux computers you can hand to an AI — real Firecracker microVMs with a browser, terminal, coding agents, and an AI that drives them.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add mcp-boringcomputers-nehemiah

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-boringcomputers-nehemiah)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Nehemiah? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Nehemiah

[](https://github.com/boringcomputers/nehemiah/actions/workflows/ci.yml)

On-demand Linux computers you can hand to an AI.

Each one is a real Firecracker microVM — a full machine with its own kernel — that boots in milliseconds, does its thing, and self-destructs when it's done (or stays up as long as you want). Open source (Apache-2.0), self-hosted with your own keys. boringcomputers.com is a showcase; you run the real thing yourself.

What a Nehemiah machine looks like

> One machine, everything on it — a live desktop with a real browser, a terminal > with coding agents preinstalled, and an AI you can hand the whole thing to. > Type "build a snake game" and it writes it, runs it, and gives you a link to play.

What you get

  • A computer — a full Linux desktop (browser, terminal, apps) over VNC, or a

fast headless shell.

  • Coding agents preinstalledclaude, codex, cursor, pi, plus node,

python, git and internet.

  • An AI that drives it — say what you want. It either uses the screen

(clicks, browses) or writes + runs code and hands you a live URL.

  • Files & ports — drag files in and out; open any port through the daemon.
  • Fork — clone a running computer, exact live state and all, in ~35 ms.
  • Storage — persistent volumes (S3-backed) that outlive a machine.
  • Ephemeral or not — machines self-destruct on a TTL by default; flip

keep alive and one runs until you stop it.

Run your own

You need a machine that can run Firecracker — a Linux box with /dev/kvm, or just your Mac:

On a Linux box — Ubuntu 24.04, x86_64 or arm64, with /dev/kvm (bare-metal, or a VM with nested virtualization) that you can root-SSH into. One command turns it into a running nehemiahd:

git clone https://github.com/boringcomputers/nehemiah
cd nehemiah && npm install

# set it up on your box (installs Firecracker, builds the images, runs nehemiahd)
NEHEMIAH_ANTHROPIC_KEY=sk-ant-...  ./infra/setup.sh root@YOUR_BOX_IP

Don't have a box? If you use Latitude.sh, [infra/latitude/provision.sh](infra/latitude/provision.sh) creates one for you first. Any other provider works too — just point setup.sh at it.

On an Apple Silicon Mac (M3 or later) — no server needed. One command builds the whole arm64 stack in a nested-virt Lima VM; real microVMs boot on your laptop (a shell restores from snapshot in ~5 ms):

brew install lima
NEHEMIAH_ANTHROPIC_KEY=sk-ant-...  ./infra/local/setup-local.sh
# nehemiahd is now at http://localhost:8088 — details in infra/local/README.md

(Windows 11 via WSL2 is designed but not yet wired up — see [infra/local/README.md](infra/local/README.md).)

Then run the site against it:

# apps/web/.env
PUBLIC_NEHEMIAH_URL=http://YOUR_BOX_IP:8080   # or a tunnel — see apps/web/.env.example
npm run dev -w web

setup.sh options (env): NEHEMIAH_TOKEN (require auth), NEHEMIAH_S3_* (persistent volumes), BIND_LOCALHOST=1 (reach it only via SSH tunnel — most private), SKIP_DESKTOP=1 (skip the ~8-min desktop image). Full REST + WebSocket API in the docs.

From any AI — an MCP server ([nehemiah-mcp](packages/mcp)) lets Claude Desktop, Cursor, and other agents spin up and drive your computers as a tool:

{
  "mcpServers": {
    "nehemiah": {
      "command": "npx",
      "args": ["-y", "nehemiah-mcp"],
      "env": { "NEHEMIAH_URL": "http://localhost:8080" }
    }
  }
}

There's also an Effect-native TypeScript client, [nehemiah-sdk](packages/sdk) (npm install nehemiah-sdk).

How it works

Real hardware-virtualized isolation — a kernel per machine, not a shared container. Each VM is jailed and resource-capped, restored from a memory snapshot in ~3 ms, and self-destructs on a TTL (or runs until you stop it, when the server enables NEHEMIAH_ALLOW_PERSISTENT). Guests are network-isolated behind an egress firewall. The host daemon is [nehemiahd/](nehemiahd) (Go); host setup is one command ([infra/setup.sh](infra/setup.sh)).

Repo

A Turborepo monorepo (npm workspaces):

apps/web/          the site — SvelteKit
nehemiahd/           the host daemon — Go, runs the microVMs
packages/sdk/      nehemiah-sdk — Effect-native TypeScript client
packages/mcp/      nehemiah-mcp — MCP server
infra/setup.sh     one-command host setup (any Ubuntu + KVM box)
infra/latitude/    rootfs/kernel/image builds, networking, Caddy, Latitude helpers
npm install      # all workspaces
npm run dev      # the site
npm run build    # production build
npm run check    # type-check
npm run lint     # prettier + eslint

Contributing & license

Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md). Licensed under [Apache 2.0](LICENSE).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.