Free OpenClaw hosting: Openrouter, Contabo, and the cheapest paths to a live instance
An honest survey of free and near-free ways to get OpenClaw running — Openrouter free models, Oracle Always Free, Contabo's $7 VDS, and ShipClaw's starter credit. Where each one breaks.
"Is there a free way to run OpenClaw?" comes up in chat with new users about once a week. The honest answer is yes, with caveats. This post walks through the four cheapest paths I've actually tested, what breaks, and where ShipClaw's free tier ($1.00 starter credit, no card) lands in the comparison.
Path 1: Self-host on Oracle Always Free
Oracle Cloud's "Always Free" tier includes a 4-vCPU ARM-based VM with 24 GB of RAM, indefinitely free. Yes, really.
Why it works: OpenClaw runs in Docker. ARM Linux is supported by the official image (or you can build from source). You can BYOK Anthropic and pay only for tokens.
Why it breaks:
- Oracle reclaims unused Always Free instances after 7 days of inactivity. If your agent legitimately idles, you can lose the VM.
- Account approval is genuinely random. I've had two accounts approved instantly and a third sit in pending for two weeks.
- The networking is weird (egress is fine, ingress through their security lists has a learning curve).
- If your agent's traffic exceeds the free tier (10 TB/mo egress), you start paying real money.
All-in cost for light use: $0 for the VM + your Anthropic spend. For 50 messages a day on Haiku, that's roughly $2/month in tokens.
Operational tax: medium. You manage the OS, the Docker upgrades, and the OpenClaw image updates.
Path 2: Openrouter free models
Openrouter has a few genuinely free model endpoints (rate-limited, often community-hosted). You can't use these with OpenClaw out of the box because OpenClaw expects an Anthropic-shaped API. But you can run a model proxy that pretends to be Anthropic and routes to a free Openrouter model.
Why it works (sort of): zero cost for the actual inference.
Why it breaks:
- The free Openrouter models are not Claude. Voice, refusal patterns, and tool-use quality all differ. SOUL.md was authored against Claude — the personalities won't read right on a Llama or Mistral model.
- Rate limits on free endpoints are aggressive. Real agent traffic gets 429'd quickly.
- You still need somewhere to host OpenClaw itself (so this doesn't actually replace path 1; it's a token-cost reduction on top of a self-host).
All-in cost: $0 for tokens + $0 for the VM (if you also do path 1).
Operational tax: high. You're running a model proxy, an Always Free VM, and an OpenClaw container, and the failure modes interact in fun ways.
I'd pursue this as a hobbyist learning exercise, not as a serious agent setup.
Path 3: Contabo VDS at $7/month
Contabo's cheapest VDS plan is $7/month and gives you 4 vCPU, 8 GB RAM, 100 GB SSD. It's the price-per-resource leader for any reliable European VPS.
Why it works: Real machine, real bandwidth, no Always Free reclamation games. Plenty of headroom for OpenClaw.
Why it breaks:
- It's not free.
- Contabo's setup time is sometimes hours, sometimes minutes. The variance is annoying.
- You still BYOK Anthropic — so the all-in is $7 + your token spend.
All-in cost for light use: ~$7 + ~$2 = $9/month.
Operational tax: medium, same as Oracle. The OS is more conventional, which is mildly nicer.
Path 4: ShipClaw's free starter credit
I run this one, so the bias is obvious. New ShipClaw accounts get $1.00 of starter credit automatically, no card on file required.
What you can actually do with $1.00 on Haiku: roughly 300–500 conversational Telegram messages, depending on length and how much browser use is involved. Enough to genuinely try the product, build an agent, see if you like the personality you picked, decide whether to top up.
Why it works: zero operational tax. You don't manage a VM, you don't watch a Docker image, and you don't pay for a $20 subscription floor before you've sent a message. TTFM is ~60 seconds.
Why it breaks:
- It's not actually unlimited free. If you build a heavily-used agent, $1.00 runs out in days.
- We're not BYOK. If you specifically need to use your own Anthropic key (for compliance reasons, or because you're already paying Anthropic Tier 4), this isn't the right fit. See the BYOK glossary entry.
All-in cost for light use: ~$3/month after the starter credit is exhausted. (See the pricing doc for the math.)
Operational tax: zero.
The comparison
| Path | TTFM | Light-usage monthly cost | Operational tax |
|---|---|---|---|
| Oracle Always Free + BYOK | ~30 min | $0 + $2 tokens | Medium |
| Openrouter free model + Always Free | ~2 hours | $0 (but quality drops) | High |
| Contabo VDS + BYOK | ~30 min | $9 | Medium |
| ShipClaw starter credit | ~60 sec | ~$3 (after $1 freebie) | Zero |
My honest take
If you're doing this for the joy of self-hosting and your time is free, Oracle Always Free + BYOK is a fun project and the cheapest sustainable path. Budget a Saturday for the initial setup.
If your time is not free, ShipClaw's $1.00 starter credit is honestly competitive — you get the same agent online in a minute, and the marginal cost of a Telegram-tier daily-driver agent is around $3/month all-in. That's about an hour of your time at minimum wage. The break-even tilts heavily toward managed for anyone whose hour is worth more than $4.
If you want to use a fast non-Claude model for personal projects: the Openrouter route works, but it's not OpenClaw-shaped any more — at that point you're building something else.
— Aria