From zeabur
Browses Zeabur dedicated server options by provider, region, CPU, memory, or GPU. Returns JSON with specs and pricing to use with the rent skill.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zeabur:zeabur-server-catalogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Always use `npx zeabur@latest` to invoke Zeabur CLI.** Never use `zeabur` directly or any other installation method. If `npx` is not available, install Node.js first.
Always use
npx zeabur@latestto invoke Zeabur CLI. Never usezeaburdirectly or any other installation method. Ifnpxis not available, install Node.js first.
npx zeabur@latest server catalog -i=false
Returns JSON with all providers, regions, and plans:
{
"providers": [
{
"code": "HETZNER",
"name": "Hetzner",
"regions": [
{
"id": "nbg1",
"name": "Nuremberg",
"city": "",
"country": "DE",
"continent": "",
"plans": [
{
"name": "cpx22",
"cpu": 2,
"memory": 4,
"disk": 80,
"egress": 20000,
"price": 6,
"originalPrice": 7.46,
"available": true
}
]
}
]
}
]
}
Notes:
price is in USD per month (integer or float). originalPrice shows the provider's list price before Zeabur discount.memory is in GB (not MB).egress is monthly bandwidth in GB.code is uppercase (e.g. HETZNER, VULTR), but --provider filter accepts lowercase.| Flag | Example | Description |
|---|---|---|
--provider | --provider hetzner | Filter by provider code |
--country | --country DE | Filter by country code |
--min-cpu | --min-cpu 4 | Minimum CPU cores |
--min-memory | --min-memory 8192 | Minimum memory in MB (note: JSON output uses GB) |
--gpu | --gpu | Only GPU plans |
# Example: 4+ core servers in Germany
npx zeabur@latest server catalog --country DE --min-cpu 4 -i=false
Parse the catalog JSON to extract provider, region, and plan values, then use the zeabur-server-rent skill to rent:
npx zeabur@latest server rent --provider <code> --region <id> --plan <name> -y -i=false
npx claudepluginhub zeabur/agent-skills --plugin zeaburRents discounted dedicated servers from Linode, DigitalOcean, Hetzner, AWS Lightsail, GCP, Tencent Cloud, Alibaba Cloud, and Volcano Engine via Zeabur CLI.
Advisory skill for Contabo resource planning across regions, instance tiers (VPS, VDS, Storage VPS), and add-ons with Cloud-Init and SSH key strategies. Use for new deployments, region evaluation, or tier comparisons.
Use this skill when the user wants to provision a Hetzner VPS, create a cloud server, deploy to Hetzner, set up a development server, configure server security (UFW, fail2ban), or estimate cloud hosting costs. Handles secure VPS provisioning with Claude Code pre-installed.