VM1
Sold out
$ 13,455/ mo
- 1 vCPU Intel Xeon
- 1 GB RAM
- 15 GB SSD
- 1 static public IP
- Unmetered transfer (fair use)
- Windows or Linux
- Physical location: Argentina
AI agent VPS
A VPS with a fixed Argentine IP to run your agent —OpenClaw, Hermes Agent or whichever you use— as one more system service. It keeps working after you close the laptop, and webhooks from Telegram or Discord always find it awake.
The short answer
You do not need to leave a computer on to keep an AI agent running: a Linux VPS with Ubuntu 24.04 and root access is enough. The agent is installed as a systemd service, comes back on its own after a reboot and keeps its configuration and memory on the server disk. At SIS Argentina the VM2 (2 vCPU, 2 GB) is enough for one agent; the model is consumed over API with your own key.
01
Your agent stops dying every time you close the laptop or the power goes out at home: it runs on a Buenos Aires server that is on all the time.
02
It runs as a systemd unit. If the server reboots, the agent comes back without you having to SSH in and start it.
03
The model is consumed over API with the key you load, against the provider you choose. We never see it or manage it.
04
It is a VPS with root: you can run the agent in a container and add a database or a queue, each in its own.
05
Configuration, history and skills live in the user’s home directory on the server, so you back them up like any other file.
06
Webhooks from Telegram, Discord or your CRM always reach the same address, with no homemade tunnels dropping out.
These are the usual Cloud VPS plans, and the cart opens with the system already selected. Monthly prices, VAT excluded. USD amounts are the official store list; local invoicing is issued in pesos.
Sold out
$ 13,455/ mo
Most chosen
$ 26,910/ mo
$ 40,365/ mo
$ 53,820/ mo
The gateway is not meant to run as root, and without lingering systemd stops the user’s services at logout:
adduser --disabled-password --comment "" juan && loginctl enable-linger juanOpenClaw’s official script brings Node.js and leaves the command ready, without starting the wizard yet:
su - juan -c 'curl -fsSL https://openclaw.ai/install.sh | bash -s -- --no-onboard'The wizard asks for the API key on screen —you never type it as an argument, so it stays out of your shell history— and leaves the gateway as a systemd service that starts with the server. Check it with openclaw gateway status.
su - juan -c 'openclaw onboard --install-daemon'Read on: Primeros pasos al recibir un VPS: la checklist de seguridad · Cuánta RAM necesita tu VPS
The VM2, with 2 vCPU and 2 GB, is enough for one agent and a light database. If you plan to run several agents, a headless browser or a vector database on the same server, the VM3 or VM4 give more room. You can move up a plan without migrating or reinstalling.
No. The agent runs on the VPS and the model is consumed over API with your key, against whichever provider you use. Large models do not run on a 2 GB CPU VPS: if what you want is to run your own open models, that calls for a hybrid cloud server with plenty of memory.
Anything that runs on Linux. OpenClaw (MIT licence, on Node.js) and Nous Research’s Hermes Agent (MIT licence, on Python) install with their own official script and run headless. OpenClaw also publishes a container image on ghcr.io if you would rather start it with Docker.
OpenClaw’s gateway listens on loopback only by default, on port 18789, and requires authentication. From your machine you reach it over a VPN or an SSH tunnel: ssh -N -L 18789:127.0.0.1:18789 juan@203.0.113.24. There is no need to expose it to the internet.
The VPS is delivered with Ubuntu 24.04 ready and root access, and the three commands on this page get the agent running. If you would rather not do it yourself, we can arrange it over a ticket.
With lingering enabled, systemd starts that user’s services at boot and the agent comes back on its own, with its configuration and history intact on disk.