usefulapi

Hetzner Cloud MCP server. Servers, volumes, networks, firewalls, load balancers, pricing and safe power operations.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://hetzner-cloud.usefulapi.io/mcp
  3. Authenticate with Hetzner Cloud when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "hetzner-cloud": {
      "url": "https://hetzner-cloud.usefulapi.io/mcp"
    }
  }
}
live32 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 32

ToolTypeWhat it does
hetzner_list_serversread
List servers
List the servers in the token's project, optionally filtered by name, status or a label selector. Hetzner Cloud: GET /servers.
hetzner_get_serverread
Get one server
Fetch a single server with its type, image, IPs, volumes, networks and protection flags. Hetzner Cloud: GET /servers/{id}.
hetzner_get_server_metricsread
Get server metrics
Fetch CPU, disk or network time series for one server over a window. Hetzner Cloud: GET /servers/{id}/metrics.
hetzner_list_server_typesread
List server types
List the available server types with their cores, memory, disk and hourly and monthly prices — read this before creating a server. Hetzner Cloud: GET /server_types.
hetzner_list_imagesread
List images
List OS images, snapshots and backups you can boot or restore from. Hetzner Cloud: GET /images.
hetzner_list_locationsread
List locations
List the datacentre locations (city, country, network zone) servers can run in. Hetzner Cloud: GET /locations.
hetzner_get_pricingread
Get pricing
Fetch the full price list for the project's currency — server types, volumes, traffic, floating IPs, load balancers and backups. Hetzner Cloud: GET /pricing.
hetzner_get_actionread
Get one action
Fetch the status of one asynchronous action. Every write tool here returns an action id — poll it with this to see whether the operation finished. Hetzner Cloud: GET /actions/{id}.
hetzner_list_volumesread
List volumes
List block-storage volumes, their size and which server they are attached to. Hetzner Cloud: GET /volumes.
hetzner_get_volumesread
Get one volume
Fetch a single resource by id. Hetzner Cloud: GET /volumes/{id}.
hetzner_list_networksread
List networks
List private networks, their IP ranges, subnets and routes. Hetzner Cloud: GET /networks.
hetzner_get_networksread
Get one network
Fetch a single resource by id. Hetzner Cloud: GET /networks/{id}.
hetzner_list_firewallsread
List firewalls
List firewalls, their rules and which resources they are applied to. Hetzner Cloud: GET /firewalls.
hetzner_get_firewallsread
Get one firewall
Fetch a single resource by id. Hetzner Cloud: GET /firewalls/{id}.
hetzner_list_load_balancersread
List load balancers
List load balancers, their services, targets and health status. Hetzner Cloud: GET /load_balancers.
hetzner_get_load_balancersread
Get one load balancer
Fetch a single resource by id. Hetzner Cloud: GET /load_balancers/{id}.
hetzner_list_ssh_keysread
List SSH keys
List the SSH public keys available to inject when creating a server. Hetzner Cloud: GET /ssh_keys.
hetzner_get_ssh_keysread
Get one SSH key
Fetch a single resource by id. Hetzner Cloud: GET /ssh_keys/{id}.
hetzner_list_floating_ipsread
List floating IPs
List floating IPs and which server each is assigned to. Hetzner Cloud: GET /floating_ips.
hetzner_get_floating_ipsread
Get one floating IP
Fetch a single resource by id. Hetzner Cloud: GET /floating_ips/{id}.
hetzner_list_primary_ipsread
List primary IPs
List primary IPs and their assignments. Hetzner Cloud: GET /primary_ips.
hetzner_get_primary_ipsread
Get one primary IP
Fetch a single resource by id. Hetzner Cloud: GET /primary_ips/{id}.
hetzner_list_certificatesread
List certificates
List TLS certificates, managed or uploaded, and their expiry. Hetzner Cloud: GET /certificates.
hetzner_get_certificatesread
Get one certificate
Fetch a single resource by id. Hetzner Cloud: GET /certificates/{id}.
hetzner_create_serverwrite
Create a server
Provision a new server. THIS STARTS BILLING: the chosen server type is charged by the hour from the moment it boots. Call hetzner_list_server_types first to see prices, and hetzner_list_images for a bootable image. Hetzner Cloud: POST /servers.
hetzner_poweron_serverwrite
Power on a server
Power on a stopped server. Returns an action id — poll it with hetzner_get_action. Hetzner Cloud: POST /servers/{id}/actions/poweron.
hetzner_shutdown_serverwrite
Shut down a server
Ask the guest OS to shut down gracefully via ACPI. Prefer this over a hard power-off. Note that a stopped server still costs money — only deleting it stops the bill. Hetzner Cloud: POST /servers/{id}/actions/shutdown.
hetzner_reboot_serverwrite
Reboot a server
Reboot a server gracefully via ACPI. Hetzner Cloud: POST /servers/{id}/actions/reboot.
hetzner_create_image_from_serverwrite
Snapshot a server to an image
Create a snapshot image from a server's disk — the safe thing to do BEFORE a risky change. Snapshots are billed for the space they use. Hetzner Cloud: POST /servers/{id}/actions/create_image.
hetzner_enable_server_backupwrite
Enable server backups
Turn on automatic backups for a server. This adds roughly 20% to the server's price. Hetzner Cloud: POST /servers/{id}/actions/enable_backup.
hetzner_disable_server_backupwrite
Disable server backups
Turn off automatic backups for a server. Existing backups are DELETED. Hetzner Cloud: POST /servers/{id}/actions/disable_backup.
hetzner_change_server_protectionwrite
Change a server's protection
Turn deletion and rebuild protection on or off for a server. Turning protection ON is the safest write in this server. Hetzner Cloud: POST /servers/{id}/actions/change_protection.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.