Table of Contents
- What OpenClaw actually needs from a VPS
- The best VPS for OpenClaw in 2026, ranked
- 1. Hetzner: the community default
- 2. Netcup: the budget pick
- 3. Contabo: most specs per dollar
- 4. DigitalOcean: best documentation
- 5. Hostinger: the one-click start
- 6. Oracle Cloud Always Free: actually $0
- The real bill is not the VPS
- Setup: the 20-minute path
- The gotchas that eat weekends
- When a VPS is the right call, and when it is not
- The managed alternative: Agent 37
- FAQ
- Is there a free VPS for OpenClaw?
- What are the minimum VPS specs for OpenClaw?
- Can OpenClaw run on shared hosting?
- Is Hetzner good for OpenClaw?
- VPS or a Mac mini at home?
- Can I move from a VPS to managed later?
Do not index
The best VPS for OpenClaw in 2026 is Hetzner’s entry Cloud plan for most people: about $5 a month buys 2 vCPU and 4 GB of RAM, which is exactly the burst headroom an always-on agent needs. Netcup and Contabo undercut it, DigitalOcean out-documents it, and Oracle’s free ARM tier beats every price if you can live with its catches. And if you would rather not run a server at all, managed OpenClaw hosting like Agent 37 starts at $3.99 a month.

That is the short version. The rest of this guide is the honest long version: what OpenClaw actually needs from a server, the picks that keep showing up in community threads, the gotchas that eat weekends, and the crossover point where doing it yourself stops being worth it. If you want managed platforms compared instead of raw servers, see our best OpenClaw hosting providers roundup.
Quick answer: a $5 to $7 VPS with 4 GB of RAM and Docker runs OpenClaw well. The agent itself is free software, so your real bill is model API usage plus somewhere always-on to run it. Own the updates, TLS, and 3 a.m. restarts yourself, or pay Agent 37 from $3.99/mo to own them for you.
What OpenClaw actually needs from a VPS
OpenClaw is a gateway process plus tool workers and channel bridges (WhatsApp, Telegram, Discord, Slack). It runs no model inference on your hardware; the LLM sits behind an API. That keeps the bar low, but the workload is burst-sensitive: idle for minutes, then a memory spike when a tool call, a browser session, and a message bridge fire at once.
- Bare minimum: 1 vCPU, 1 to 2 GB RAM with a swapfile, 20 GB disk. The official DigitalOcean guide runs OpenClaw on a $6 droplet with a 2 GB swapfile, and a quiet single agent survives there. The first busy afternoon usually does not.
- Comfortable: 2 vCPU, 4 GB RAM, 40 GB SSD. The spec most operators settle on, and the right floor for anything you depend on.
- Multi-agent or heavy browser automation: 4 vCPU and 8 GB or more. Headless Chromium is the hungriest thing you will run.
You also need Docker (or Node 24 for the bare-metal install) and root access. Shared web hosting is a non-starter: OpenClaw is a persistent process, not a website.
The best VPS for OpenClaw in 2026, ranked
Entry-plan prices below are mid-2026 ballparks. Verify before you buy; VPS pricing shifts constantly, and promo prices hide renewal jumps.
1. Hetzner: the community default
Ask this question in any OpenClaw thread and Hetzner comes back first. Around $5 a month gets 2 vCPU, 4 GB RAM, and 40 GB NVMe with hourly billing and boring, predictable reliability. The official OpenClaw docs keep a dedicated Docker-on-Hetzner guide. Catches: signup sometimes asks for ID verification, and traffic allowances differ by region.
2. Netcup: the budget pick
The community thread that currently sits at number one on Google for this exact search recommends two names: Hetzner for performance, Netcup when you want cheaper. Netcup usually wins on raw price per gigabyte. Expect fewer regions and less hand-holding; buy it when price is the point.
3. Contabo: most specs per dollar
Roughly $6 a month buys RAM that other providers charge triple for, which makes Contabo popular for multi-agent setups and anything memory-hungry. Community reports flag slower provisioning and support. Buy it for the specs, not the polish.
4. DigitalOcean: best documentation
Per-second billing, clean UI, and the most polished official install guide: the OpenClaw docs walk the full setup on DigitalOcean’s $6 Basic Droplet, swapfile included. Comfort costs more here than at Hetzner, so it is the pick when you value docs and predictability over price.
5. Hostinger: the one-click start
Hostinger’s VPS panel has a one-click OpenClaw template, which makes it the fastest DIY start; there is a reason its walkthrough video has tens of thousands of views. Watch the pricing shape: the headline price requires a long prepaid term and renewals are meaningfully higher. Our Hostinger OpenClaw guide covers the setup end to end.
6. Oracle Cloud Always Free: actually $0
Up to 4 ARM cores and 24 GB RAM, free. The catches are real: capacity is often unavailable, signup is finicky, and idle instances can be reclaimed. ARM itself is fine for OpenClaw. Treat it as a great lab and a bad SLA, and read our free OpenClaw hosting guide before betting on it.
Azure, GCP, Fly.io, Railway, and Northflank all work too, and the official docs keep per-provider guides for each. They are rarely the cheap answer, which is why they sit below the names above for this use.
The real bill is not the VPS
OpenClaw is free software. Nobody sells you the agent; the honest cost question is model API spend plus somewhere always-on to run it. For an active agent, tokens routinely cost several times the server. The $5 box ends up the smallest line on the bill.
Two practical consequences. First, do not overbuy compute: a 16 GB monster will not make replies faster, because inference happens at the model provider. Second, model choice moves your bill far more than provider choice; switching the default model to a cheaper one saves more than any VPS deal. Our OpenClaw hosting pricing breakdown runs the full numbers.
Setup: the 20-minute path
On a fresh Ubuntu VPS, the whole install is: install Docker, clone the official repo, write a
.env, and run docker compose up -d. We maintain deploy-openclaw, a free MIT-licensed script that runs that sequence in one command, is idempotent, and uses only commands from the official docs. Prefer bare metal? The official installer needs Node 24 and one curl command.Two settings matter on a server. The gateway binds to loopback by default, so to reach the Control UI from your laptop you either tunnel in over SSH or Tailscale, or set
OPENCLAW_GATEWAY_BIND=lan together with a gateway auth token. And harden the box before you install anything:- Pick a region close to your messaging channels and users
- SSH keys only, disable password login, add fail2ban
- Give Docker memory limits so a runaway tool cannot take the host down
- Keep API keys in environment variables, never in git
- Set up log rotation and a disk alert
- Write the restore procedure down before you need it
The gotchas that eat weekends
- The browser breaks first. On Ubuntu, snap-packaged Chromium fights the sandboxing that browser automation needs. Install a real Chrome or Chromium package, or use the official
-browserimage variant that bundles one.
- Datacenter IPs get challenged. Websites treat VPS traffic with suspicion: expect more CAPTCHAs and login flags than on your home connection. Heavy browsing workloads end up on residential proxies, or with the browser running at home paired to the cloud gateway.
- Small VMs die by OOM. Exit code 137 means memory. Add swap, and on tiny or ARM hosts use the official startup tunings (
NODE_COMPILE_CACHE,OPENCLAW_NO_RESPAWN=1) plus a systemd restart policy.
- The agent holds your credentials. It can read mail, message people, and spend API budget, so treat the box like production: loopback by default, auth token if you bind wider, updates on a schedule, backups tested.
When a VPS is the right call, and when it is not
Stay on a VPS when you have infra experience, need custom networking like a Tailscale mesh or private VLANs, want the biggest specs per dollar, or genuinely enjoy the ops. Those are real reasons, and nothing in this post pretends otherwise.
Move to managed when uptime protects revenue, when client data needs hard boundaries (our agency hosting guide covers that case), or when your time is the scarce resource. The math is blunt: at $50 an hour, one afternoon of VPS debugging costs more than a year of managed Basic.
The managed alternative: Agent 37
Agent 37 is managed OpenClaw hosting, not a VPS. Your agent runs in an isolated container with a web terminal, visual file browser, task board, and a live Linux desktop in the browser, and runtime and security updates roll out automatically. Bring your own API keys; they go straight from your container to the model provider.
Basic is $3.99 a month for 1 vCPU, 4 GB RAM, and 12 GB disk. Pro at $29.99 adds a built-in Chromium browser for web automation, which quietly solves the snap-Chromium problem above. There is no free tier; $3.99 is the cheapest way in. And one honest downside: at these prices support is filtered by an AI bot first, not a human on live chat.
Over 1,000 people pay for it, its Trustpilot reviews are 5-star, and it was a number-one Product of the Day on Product Hunt. If the checklist above read like a second job, deploy OpenClaw on Agent 37 in one click, always-on from $3.99/mo, or see exactly what the managed layer includes on the OpenClaw hosting page.
FAQ
Is there a free VPS for OpenClaw?
Oracle Cloud’s Always Free ARM tier is the only real one, with the capacity and reclaim caveats above. OpenClaw itself is free software either way. Agent 37 is not free and has no free tier; the cheapest plan is $3.99 a month.
What are the minimum VPS specs for OpenClaw?
1 vCPU, 2 GB RAM (or 1 GB plus a 2 GB swapfile), and 20 GB of disk will boot and run a single quiet agent. For stable daily use, plan on 2 vCPU, 4 GB RAM, and 40 GB SSD with Docker.
Can OpenClaw run on shared hosting?
No. It needs a persistent process, Docker or root access, and real memory. Shared web hosting offers none of those. The cheapest workable homes are a small VPS or a managed plan.
Is Hetzner good for OpenClaw?
Yes, it is the community default: entry plans around $5, hourly billing, and an official install guide in the OpenClaw docs. The main friction is signup ID verification for some accounts.
VPS or a Mac mini at home?
A VPS wins on uptime, remote access, and not depending on your home power and internet. A Mac mini wins on local latency and a residential IP that websites trust more. We compare both honestly in our OpenClaw Mac mini guide.
Can I move from a VPS to managed later?
Yes. Export your config and skills, recreate the channels on a fresh managed instance, validate a few runs in parallel, then retire the server. Most migrations are an evening, not a weekend. The complete OpenClaw hosting guide has the full walkthrough.