Loading...
Loading...
Run your agents around the clock. A $5/month VPS gives you 24/7 availability, persistent sessions, and the ability to fire scheduled tasks at any hour.
Scheduled tasks fire at 3 AM. Health checks run every 6 hours. Your laptop can sleep.
No context loss between sessions. Memory files persist. Logs accumulate over time.
Same Node version, same paths, same API keys — no drift between developer machines.
Long-running Claude tasks won't slow down your development machine or browser.
Any provider works. These three have the best balance of price, reliability, and developer experience.
CX22: 2 vCPU, 4GB RAM, 40GB SSDBest value, EU/US data centres
Basic: 2 vCPU, 4GB RAM, 80GB SSDGood docs, easy networking
Nanode 4GB: 2 vCPU, 4GB RAM, 80GB SSDReliable, global edge network
Minimum specs: 2 vCPU, 4GB RAM, 40GB SSD. Claude Code itself is lightweight; you need headroom for Node.js, npm caches, and any tools your agents call.
After provisioning an Ubuntu 22.04 LTS server:
# 1. Connect and create a non-root user ssh root@YOUR_SERVER_IP adduser deploy usermod -aG sudo deploy # 2. Copy your SSH key to the new user rsync --archive --chown=deploy:deploy ~/.ssh /home/deploy # 3. Basic firewall ufw allow 22/tcp ufw allow 80/tcp ufw allow 443/tcp ufw --force enable # 4. Install Node.js 20 via nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash source ~/.bashrc nvm install 20 nvm use 20 node --version # v20.x.x
# Install Claude Code globally npm install -g @anthropic-ai/claude-code # Set your API key (add to ~/.bashrc for persistence) export ANTHROPIC_API_KEY="sk-ant-..." # Verify the install claude --version # Clone your project and configure git clone YOUR_REPO_URL ~/project cd ~/project claude --dangerously-skip-permissions /start
# /etc/systemd/system/agent.service [Unit] Description=AI Agent After=network.target [Service] User=deploy WorkingDirectory=/home/deploy/project ExecStart=/usr/bin/node /usr/local/bin/claude \ --dangerously-skip-permissions /loop Restart=on-failure EnvironmentFile=/home/deploy/.env [Install] WantedBy=multi-user.target # Enable and start systemctl enable agent systemctl start agent
# Install pm2 npm install -g pm2 # Start the agent loop pm2 start "claude --dangerously-skip-permissions /loop" \ --name agent \ --cwd /home/deploy/project # Auto-start on reboot pm2 startup pm2 save # Monitor pm2 logs agent pm2 status
A VPS running an agent with your API keys is a target. Apply these before going live:
Hosted agent plans come with the VPS, setup, monitoring, and security all handled. You fill out an onboarding form — your agent is live within 48 hours.
View Pricing