Loading...
Loading...
Cloudflare's serverless adaptation of OpenClaw. Runs on Cloudflare Workers with persistent state and sandboxed execution. No local hardware needed. Pay-per-request pricing. Global edge deployment in 300+ cities.
Install Node.js LTS using nvm (Node Version Manager). This ensures you have the correct Node.js version.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
nvm install --lts
nvm use --ltsDownload the Moltworker source code from GitHub.
git clone https://github.com/cloudflare/moltworker.git
cd moltworkerInstall all required Node.js packages.
npm installCopy the example environment file and configure your API keys, messaging platform tokens, and other settings.
cp .env.example .env
# Edit .env with your API keys and settingsLaunch Moltworker. On first run, it will initialize the database and connect to configured services.
npm startTime from process start to first response
Average response time after startup
Not needed - Moltworker runs on Cloudflare edge. But would work on a VPS too.
Use a reverse proxy like Caddy or nginx for HTTPS termination.
Set up monitoring with tools like htop, Prometheus, or Grafana.
Use cloud provider snapshots for easy backup and recovery.
Consider spot/preemptible instances for cost savings on non-critical deployments.