npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@danfarrdotcom/hetzner-mcp

v1.0.0

Published

A comprehensive MCP server for Hetzner Cloud API — 70+ tools, zero dependencies

Downloads

118

Readme

hetzner-mcp

npm version License: MIT Node.js TypeScript MCP SDK Zero Dependencies Tools

70+ tools for Hetzner Cloud — servers, volumes, firewalls, networks, load balancers, floating IPs, primary IPs, SSH keys, images, certificates, placement groups, and pricing info.

Tools (70+)

Servers (20 tools)

list_servers, get_server, create_server, delete_server, power_on_server, power_off_server, shutdown_server, reboot_server, reset_server, rebuild_server, resize_server, enable_rescue_mode, disable_rescue_mode, enable_backup, disable_backup, create_image_from_server, get_server_metrics, attach_iso_to_server, detach_iso_from_server, change_server_dns_ptr, change_server_protection, update_server

Volumes (7 tools)

list_volumes, get_volume, create_volume, delete_volume, attach_volume, detach_volume, resize_volume

Firewalls (8 tools)

list_firewalls, get_firewall, create_firewall, update_firewall, delete_firewall, set_firewall_rules, apply_firewall_to_resources, remove_firewall_from_resources

Networks (10 tools)

list_networks, get_network, create_network, delete_network, update_network, add_subnet_to_network, delete_subnet_from_network, add_route_to_network, delete_route_from_network, attach_server_to_network, detach_server_from_network

Floating IPs (6 tools)

list_floating_ips, get_floating_ip, create_floating_ip, delete_floating_ip, assign_floating_ip, unassign_floating_ip

Primary IPs (6 tools)

list_primary_ips, get_primary_ip, create_primary_ip, delete_primary_ip, assign_primary_ip, unassign_primary_ip

Load Balancers (10 tools)

list_load_balancers, get_load_balancer, create_load_balancer, delete_load_balancer, add_target_to_load_balancer, remove_target_from_load_balancer, add_service_to_load_balancer, delete_service_from_load_balancer, attach_load_balancer_to_network, detach_load_balancer_from_network, get_load_balancer_metrics

SSH Keys (5 tools)

list_ssh_keys, get_ssh_key, create_ssh_key, update_ssh_key, delete_ssh_key

Images & ISOs (5 tools)

list_images, get_image, update_image, delete_image, list_isos

Certificates (5 tools)

list_certificates, get_certificate, create_managed_certificate, create_uploaded_certificate, delete_certificate

Placement Groups (5 tools)

list_placement_groups, get_placement_group, create_placement_group, delete_placement_group, update_placement_group

Info & Pricing (6 tools)

list_server_types, list_locations, list_datacenters, get_pricing, list_actions, get_action

Installation

npm install
npm run build

Or install globally from npm:

npx @danfarrdotcom/hetzner-mcp

Configuration

Set your Hetzner Cloud API token:

export HCLOUD_TOKEN=your_token_here

Claude Desktop / Kiro

Add to your MCP config:

{
  "mcpServers": {
    "hetzner": {
      "command": "npx",
      "args": ["-y", "@danfarrdotcom/hetzner-mcp"],
      "env": {
        "HCLOUD_TOKEN": "your_token_here"
      }
    }
  }
}

Cursor / VS Code

{
  "mcp": {
    "servers": {
      "hetzner": {
        "command": "npx",
        "args": ["-y", "@danfarrdotcom/hetzner-mcp"],
        "env": {
          "HCLOUD_TOKEN": "your_token_here"
        }
      }
    }
  }
}

Development

npm run dev  # Run with tsx (no build needed)

Releasing

Tag a version to trigger the release workflow:

git tag v1.0.0
git push origin v1.0.0

This will automatically publish to npm and create a GitHub release.

License

MIT