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.