Cloudflare Releases Moltworker: OpenClaw Without the Hardware

Cloudflare built Moltworker β€” an adaptation of OpenClaw for its serverless Workers platform. Run your AI agent on the edge with no Mac Mini required.

February 8, 2026

The internet woke up this week to a wave of people buying Mac Minis specifically to run OpenClaw. Cloudflare offered a different solution: Moltworker β€” an adaptation of OpenClaw for Cloudflare’s serverless infrastructure.

The Problem

Running OpenClaw requires a server or computer that’s always on. This led to:

  • The now-famous β€œMac Mini meme” (developers jokingly ordering $600 machines to host a Telegram bot)
  • Reliability concerns with home servers
  • Questions about electricity costs and uptime guarantees

Cloudflare’s Solution

Moltworker is a set of middleware Workers and adapted scripts that let you run OpenClaw on:

  • Cloudflare Workers β€” serverless compute at the edge
  • Sandbox SDK β€” isolated code execution
  • Browser Rendering β€” headless browser for web automation
  • R2 β€” persistent storage for memory and session data

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚    Moltworker (Entrypoint)      β”‚
β”‚    - API Router                  β”‚
β”‚    - Proxy to Sandbox           β”‚
β”‚    - Admin UI                   β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β–Ό           β–Ό           β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚Sandbox β”‚ β”‚Browser β”‚ β”‚  R2    β”‚
β”‚Containerβ”‚ β”‚Renderingβ”‚ β”‚Storage β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Advantages

  • No hardware required β€” no Mac Mini, no VPS
  • Global edge network β€” Cloudflare operates in 300+ cities
  • Sandboxed containers β€” isolated execution by default
  • Auto-scaling β€” handles load automatically
  • Pay per use β€” only pay when the agent is active

Getting Started

# Clone the repository
git clone https://github.com/cloudflare/moltworker

# Configure
cp wrangler.toml.example wrangler.toml
# Edit configuration with your API keys

# Deploy
npx wrangler deploy

Node.js Compatibility

Cloudflare noted significant progress in Workers’ Node.js compatibility:

β€œWe tested the 1,000 most popular npm packages and the majority now work on Workers without modification.”

This was a key requirement for making OpenClaw β€” which is Node.js-based β€” work on the platform.


For developers who don’t want to manage server infrastructure but still want a self-hosted AI agent, Moltworker represents a significant step forward. The tradeoff: you’re still using Cloudflare’s infrastructure, which is less β€œself-hosted” than running your own VPS β€” but considerably easier to maintain.