Claudebot VPS Setup Guide 2026: Run Claude AI on Any Server (Mac Mini Not Needed)

Updated: July 25, 2026

This VPS guide picks up where that guide ends — it assumes
you know what ClawdBot does and focuses entirely on how to
deploy it safely on a server so it runs 24/7 without your
laptop being on.

This guide shows how to safely deploy ClawdBot on a Virtual Private Server (VPS) so it runs 24/7 and stays isolated from your personal computer.


Why use a VPS instead of a Mac Mini?

ClawdBot is open source and has full access to its environment.

That means:

  • It can run commands
  • It can read files
  • It can access apps and services

Putting it on your main laptop is risky.

People buy Mac Minis to isolate it.

A VPS does the same thing, for much less money.


VPS Cost Comparison — Hetzner, Hostinger, DigitalOcean

The Mac Mini people buy for ClawdBot isolation costs $599–$799
upfront, plus electricity running 24/7.

A VPS does the same isolation job for a fraction of that.
Here’s how the main providers compare for a ClawdBot-ready spec
(2 vCPU, 8GB RAM, Ubuntu 24.04):

ProviderPlanMonthly CostAnnual CostNotes
HostingerKVM2~$8–12/mo~$96–144Used in this guide, easy UI
HetznerCX22~$4–6/mo~$48–72Cheapest, EU-based servers
DigitalOceanBasic Droplet~$12–18/mo~$144–216Good docs, US/global regions

Which one to choose:

Hetzner — cheapest option, excellent for Europe-based users,
slightly more technical setup. Best value if you’re comfortable
with Linux.

Hostinger — what this guide uses. Best balance of price and
beginner-friendliness. VPS dashboard is cleaner to navigate.

DigitalOcean — slightly more expensive but the best
documentation and support ecosystem. Good if you plan to scale.

All three run Ubuntu 24.04 LTS and support the exact same
ClawdBot setup steps in this guide — only Step 1 differs
(choosing your provider).


What you need before starting

  • A VPS account (Hostinger used in this guide)
  • A computer with a terminal (Mac, Windows, or Linux)
  • A Telegram account
  • An Anthropic API key

→ Recommended: read the ClawdBot Practical Usage Guide
before starting this setup.


Step 1. Create a VPS

  1. Go to Hostinger VPS hosting
  2. Choose a VPS plan

Recommended plan used here:

  • KVM2
  • 2 vCPU
  • 8 GB RAM
  • 100 GB storage
  • 8 TB bandwidth

This is more than enough for ClawdBot.

  1. Choose a billing period
    • 12 or 24 months gives the best price
    • Optional discount code can reduce cost further
  2. Choose server location
  3. Choose operating system
    • Ubuntu 24.04 LTS
  4. Confirm and pay

Step 2. Set your root password

After payment:

  • Create a strong root password
  • Save it safely

You will need this password multiple times.

SSH keys are optional and can be added later.


Step 3. Open the VPS dashboard

  1. Click “Manage VPS”
  2. Skip onboarding questions
  3. You should now see:
    • IP address
    • System status
    • VPS metrics

Step 4. Connect to the VPS using SSH

Open your terminal or command prompt.

In the Hostinger dashboard, copy the SSH command:

ssh root@YOUR_VPS_IP

Paste it into your terminal and press Enter.

When asked:

  • Type yes
  • Enter the root password

You are now inside the VPS.


Step 5. Create a dedicated user for ClawdBot

Never run ClawdBot as root.

Create a new user:

adduser claude

Set a password when prompted.

Skip optional profile details.

Give admin permissions:

usermod -aG sudo claude

Switch to the new user:

su – claude

Your prompt should change, confirming you are now logged in as this user.


Step 6. Install ClawdBot

Use the official one-line installer provided by ClawdBot.

Paste the installer command and press Enter.

What happens next:

  • OS is detected
  • Node.js is installed
  • Dependencies are installed
  • ClawdBot is installed

This can take 2 to 10 minutes.

Do not interrupt the process.


Step 7. Start the onboarding flow

After installation, onboarding starts automatically.

  1. Read the security warning
  2. Confirm that you understand the risks
  3. Choose Quick Start

Step 8. Configure the AI model

  1. Select Anthropic as the provider
  2. Enter your Anthropic API key
  3. Choose default model
    • Opus 4.5

Step 9. Choose a messaging channel

When prompted, select:

  • Telegram Bot API

Step 10. Create a Telegram bot

Open Telegram.

  1. Search for BotFather
  2. Send the command: /newbot
  3. Choose:
    • Bot name
    • Bot username (must end with “bot”)
  4. BotFather gives you a bot token

Copy this token and paste it into the terminal when ClawdBot asks for it.


Step 11. Select skills

When asked to install skills:

  1. Choose npm
  2. Select optional skills using Space
    • Claude Hub
    • Google tools if needed

You can add more skills later.

If a skill fails to install, continue.

It can be fixed later.


Step 12. Finish onboarding

When onboarding completes:

  • ClawdBot is installed
  • A local dashboard URL is shown

If you open it in your browser, it will not work yet.

This is expected.


Step 13. Start the ClawdBot gateway

Make sure you are logged in as the correct user:

whoami

Start the gateway:

ClawdBot gateway start

You should see a message confirming:

  • Gateway is listening on a port

Step 14. Create an SSH tunnel

Open a new terminal window on your computer.

Run:

ssh -N -L 18789:localhost:18789 claude@YOUR_VPS_IP

Enter the claude user password.


Step 15. Open the web dashboard

In your browser, open:

http://localhost:18789

You should now see:

  • ClawdBot web dashboard
  • Health status showing OK

Step 16. Pair Telegram with ClawdBot

  1. Open your Telegram bot
  2. Press Start
  3. Telegram provides a pairing code

Send this pairing code inside the ClawdBot web chat.

ClawdBot confirms the pairing.


Step 17. Test Telegram control

Send a message to the Telegram bot:

Hello

ClawdBot should reply.

This confirms:

  • Telegram integration works
  • ClawdBot is live

Step 18. Enable auto-start on reboot

This ensures ClawdBot runs 24/7.

Enable the service:

ClawdBot service enable

Start it:

ClawdBot service start

Check status:

ClawdBot service status

You should see the service running.


Step 19. Verify remote access

Close your SSH tunnel and terminal.

Send a message from Telegram again.

If ClawdBot responds:

  • Your setup is complete
  • ClawdBot is running independently

Security warnings you must understand

Treat ClawdBot like a human assistant with admin access.

Key risks:

  • It can run system commands
  • It can read files
  • It can access services you connect

Best practices:

  • Use separate email accounts
  • Avoid personal calendars and vaults
  • Prefer read-only permissions
  • Never expose secrets casually

A VPS isolates damage if something goes wrong.


Finally

You now have:

  • ClawdBot running on a VPS
  • Telegram control from anywhere
  • No Mac Mini required
  • Reduced security risk

???? New to ClawdBot? Read the complete ClawdBot setup and
usage guide first:
ClawdBot Complete Guide — What It Is, How It Works, and What You Can Build With It

This VPS guide picks up where that guide ends — it assumes
you know what ClawdBot does and focuses entirely on how to
deploy it safely on a server so it runs 24/7 without your
laptop being on.

This guide shows how to safely deploy ClawdBot on a Virtual Private Server (VPS) so it runs 24/7 and stays isolated from your personal computer.


Why use a VPS instead of a Mac Mini?

ClawdBot is open source and has full access to its environment.

That means:

  • It can run commands
  • It can read files
  • It can access apps and services

Putting it on your main laptop is risky.

People buy Mac Minis to isolate it.

A VPS does the same thing, for much less money.


VPS Cost Comparison — Hetzner, Hostinger, DigitalOcean

The Mac Mini people buy for ClawdBot isolation costs $599–$799
upfront, plus electricity running 24/7.

A VPS does the same isolation job for a fraction of that.
Here’s how the main providers compare for a ClawdBot-ready spec
(2 vCPU, 8GB RAM, Ubuntu 24.04):

ProviderPlanMonthly CostAnnual CostNotes
HostingerKVM2~$8–12/mo~$96–144Used in this guide, easy UI
HetznerCX22~$4–6/mo~$48–72Cheapest, EU-based servers
DigitalOceanBasic Droplet~$12–18/mo~$144–216Good docs, US/global regions

Which one to choose:

Hetzner — cheapest option, excellent for Europe-based users,
slightly more technical setup. Best value if you’re comfortable
with Linux.

Hostinger — what this guide uses. Best balance of price and
beginner-friendliness. VPS dashboard is cleaner to navigate.

DigitalOcean — slightly more expensive but the best
documentation and support ecosystem. Good if you plan to scale.

All three run Ubuntu 24.04 LTS and support the exact same
ClawdBot setup steps in this guide — only Step 1 differs
(choosing your provider).


What you need before starting

  • A VPS account (Hostinger used in this guide)
  • A computer with a terminal (Mac, Windows, or Linux)
  • A Telegram account
  • An Anthropic API key

→ Recommended: read the ClawdBot Practical Usage Guide
before starting this setup.


Step 1. Create a VPS

  1. Go to Hostinger VPS hosting
  2. Choose a VPS plan

Recommended plan used here:

  • KVM2
  • 2 vCPU
  • 8 GB RAM
  • 100 GB storage
  • 8 TB bandwidth

This is more than enough for ClawdBot.

  1. Choose a billing period
    • 12 or 24 months gives the best price
    • Optional discount code can reduce cost further
  2. Choose server location
  3. Choose operating system
    • Ubuntu 24.04 LTS
  4. Confirm and pay

Step 2. Set your root password

After payment:

  • Create a strong root password
  • Save it safely

You will need this password multiple times.

SSH keys are optional and can be added later.


Step 3. Open the VPS dashboard

  1. Click “Manage VPS”
  2. Skip onboarding questions
  3. You should now see:
    • IP address
    • System status
    • VPS metrics

Step 4. Connect to the VPS using SSH

Open your terminal or command prompt.

In the Hostinger dashboard, copy the SSH command:

ssh root@YOUR_VPS_IP

Paste it into your terminal and press Enter.

When asked:

  • Type yes
  • Enter the root password

You are now inside the VPS.


Step 5. Create a dedicated user for ClawdBot

Never run ClawdBot as root.

Create a new user:

adduser claude

Set a password when prompted.

Skip optional profile details.

Give admin permissions:

usermod -aG sudo claude

Switch to the new user:

su – claude

Your prompt should change, confirming you are now logged in as this user.


Step 6. Install ClawdBot

Use the official one-line installer provided by ClawdBot.

Paste the installer command and press Enter.

What happens next:

  • OS is detected
  • Node.js is installed
  • Dependencies are installed
  • ClawdBot is installed

This can take 2 to 10 minutes.

Do not interrupt the process.


Step 7. Start the onboarding flow

After installation, onboarding starts automatically.

  1. Read the security warning
  2. Confirm that you understand the risks
  3. Choose Quick Start

Step 8. Configure the AI model

  1. Select Anthropic as the provider
  2. Enter your Anthropic API key
  3. Choose default model
    • Opus 4.5

Step 9. Choose a messaging channel

When prompted, select:

  • Telegram Bot API

Step 10. Create a Telegram bot

Open Telegram.

  1. Search for BotFather
  2. Send the command: /newbot
  3. Choose:
    • Bot name
    • Bot username (must end with “bot”)
  4. BotFather gives you a bot token

Copy this token and paste it into the terminal when ClawdBot asks for it.


Step 11. Select skills

When asked to install skills:

  1. Choose npm
  2. Select optional skills using Space
    • Claude Hub
    • Google tools if needed

You can add more skills later.

If a skill fails to install, continue.

It can be fixed later.


Step 12. Finish onboarding

When onboarding completes:

  • ClawdBot is installed
  • A local dashboard URL is shown

If you open it in your browser, it will not work yet.

This is expected.


Step 13. Start the ClawdBot gateway

Make sure you are logged in as the correct user:

whoami

Start the gateway:

ClawdBot gateway start

You should see a message confirming:

  • Gateway is listening on a port

Step 14. Create an SSH tunnel

Open a new terminal window on your computer.

Run:

ssh -N -L 18789:localhost:18789 claude@YOUR_VPS_IP

Enter the claude user password.


Step 15. Open the web dashboard

In your browser, open:

http://localhost:18789

You should now see:

  • ClawdBot web dashboard
  • Health status showing OK

Step 16. Pair Telegram with ClawdBot

  1. Open your Telegram bot
  2. Press Start
  3. Telegram provides a pairing code

Send this pairing code inside the ClawdBot web chat.

ClawdBot confirms the pairing.


Step 17. Test Telegram control

Send a message to the Telegram bot:

Hello

ClawdBot should reply.

This confirms:

  • Telegram integration works
  • ClawdBot is live

Step 18. Enable auto-start on reboot

This ensures ClawdBot runs 24/7.

Enable the service:

ClawdBot service enable

Start it:

ClawdBot service start

Check status:

ClawdBot service status

You should see the service running.


Step 19. Verify remote access

Close your SSH tunnel and terminal.

Send a message from Telegram again.

If ClawdBot responds:

  • Your setup is complete
  • ClawdBot is running independently

Security warnings you must understand

Treat ClawdBot like a human assistant with admin access.

Key risks:

  • It can run system commands
  • It can read files
  • It can access services you connect

Best practices:

  • Use separate email accounts
  • Avoid personal calendars and vaults
  • Prefer read-only permissions
  • Never expose secrets casually

A VPS isolates damage if something goes wrong.


Finally

You now have:

  • ClawdBot running on a VPS
  • Telegram control from anywhere
  • No Mac Mini required
  • Reduced security risk

???? New to ClawdBot? Read the complete ClawdBot setup and
usage guide first:
ClawdBot Complete Guide — What It Is, How It Works, and What You Can Build With It

Author
Written By
Vikash Kumar
Building AI agents, n8n workflows and end-to-end automation for 30+ Brands across India, the US, Europe, Dubai & Australia. 7+ years of Experience saving founders real hours every week - no code required.
Ask more Questions about this Blog with AI:

Our AI Articles

Learn from our AI Articles to excel in your profession ;)

How to Automate Lead Follow-Up Calls with AI: A Step-by-Step Guide

Here is a number that should worry every business owner: leads that are called within five minutes of showing interest...

10 Claude Tips: From Using 10% of Claude to Actually Using It

A practical guide to getting more out of Claude, this post shares 10 tips from beginner to advanced, including choosing...

How Claude Killed Prompt Engineering (And What To Do Instead)

Anthropic’s latest Claude updates suggest a shift away from long, rule-heavy prompts toward minimal, goal-first context. This post explains Record...

Why AI Recommends the Business With Recent Reviews, Not Just More of Them

Why AI search tools like ChatGPT and Google AI Overviews weigh review recency and response rate above raw review count...

Build a Second Brain for Your Business With Claude Code and Obsidian

This guide shows how to build a business second brain with Claude Code and Obsidian in under 10 minutes. Using...

Does AI Actually Care How Old Your Content Is?

Does content freshness really affect AI citations? Yes, but it's one of 23 factors, not the deciding one, and the...

Does Your “About Us” Page Actually Help AI Trust Your Business?

Does an About Us page actually help AI trust your business? Yes, it's a core E-E-A-T signal Google's own quality...

Kimi K3 Setup Guide: Add It to Claude Code, Codex CLI, Cursor & Aider Free

Learn how to set up Kimi K3, Moonshot AI’s powerful open-source model, as the default in Claude Code, Codex CLI,...

How to Test an Automation Before It Touches a Real Customer

How do you know an automation is ready for real customers, not just a demo? Test it against messy real-world...

Cinematic Website Prompt Pack

A prompt pack for building scroll-driven cinematic websites with Kimi K3 for under $2. It walks through three copy-paste prompts...

Is YouTube the Next Way to Get Cited by AI? What the Early Data Shows

Is YouTube becoming a real AI-search citation channel? A 2026 OtterlyAI study found it's the most-cited domain in AI Overviews,...

How to Reduce Manual Work with Workflow Automation | BULDRR AI

Every business owner reaches a point where manual work starts eating into growth. You spend hours copying data between spreadsheets,...

1:1 Free Strategy Session
Your competitors are already automating. Are you still paying for it manually?

Do you want to adopt AI Automation?

Every hour your team does repetitive work, you're burning real money.
While you wait, faster businesses are cutting costs and moving quicker.
AI and automations aren't the future anymore — they're the present.

Book a live 1-on-1 session where we show you exactly which of your daily tasks can be automated — and what it’s costing you not to.