Hetzner · Capability

Hetzner Cloud API — ISOs

Hetzner Cloud API — ISOs. 2 operations. Lead operation: List ISOs. Self-contained Naftiko capability covering one Hetzner business surface.

Run with Naftiko HetznerISOs

What You Can Do

GET
Listisos — List ISOs
/v1/isos
GET
Getiso — Get an ISO
/v1/isos/{id}

MCP Tools

list-isos

List ISOs

read-only idempotent
get-iso

Get an ISO

read-only idempotent

Capability Spec

hetzner-isos.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Hetzner Cloud API — ISOs
  description: 'Hetzner Cloud API — ISOs. 2 operations. Lead operation: List ISOs. Self-contained Naftiko capability covering
    one Hetzner business surface.'
  tags:
  - Hetzner
  - ISOs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HETZNER_API_KEY: HETZNER_API_KEY
capability:
  consumes:
  - type: http
    namespace: hetzner-isos
    baseUri: https://api.hetzner.cloud/v1
    description: Hetzner Cloud API — ISOs business capability. Self-contained, no shared references.
    resources:
    - name: isos
      path: /isos
      operations:
      - name: listisos
        method: GET
        description: List ISOs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter resources by their name.
        - name: architecture
          in: query
          type: string
          description: Filter resources by cpu architecture.
        - name: include_architecture_wildcard
          in: query
          type: boolean
          description: Include Images with wildcard architecture (architecture is null). Architecture filter must be specified.
        - name: page
          in: query
          type: integer
          description: Page number to return. For more information, see "[Pagination](#description/pagination)".
        - name: per_page
          in: query
          type: integer
          description: Maximum number of entries returned per page. For more information, see "[Pagination](#description/pagination)".
    - name: isos-id
      path: /isos/{id}
      operations:
      - name: getiso
        method: GET
        description: Get an ISO
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: ID of the ISO.
          required: true
    authentication:
      type: bearer
      token: '{{env.HETZNER_API_KEY}}'
  exposes:
  - type: rest
    namespace: hetzner-isos-rest
    port: 8080
    description: REST adapter for Hetzner Cloud API — ISOs. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/isos
      name: isos
      description: REST surface for isos.
      operations:
      - method: GET
        name: listisos
        description: List ISOs
        call: hetzner-isos.listisos
        with:
          name: rest.name
          architecture: rest.architecture
          include_architecture_wildcard: rest.include_architecture_wildcard
          page: rest.page
          per_page: rest.per_page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/isos/{id}
      name: isos-id
      description: REST surface for isos-id.
      operations:
      - method: GET
        name: getiso
        description: Get an ISO
        call: hetzner-isos.getiso
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: hetzner-isos-mcp
    port: 9090
    transport: http
    description: MCP adapter for Hetzner Cloud API — ISOs. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-isos
      description: List ISOs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hetzner-isos.listisos
      with:
        name: tools.name
        architecture: tools.architecture
        include_architecture_wildcard: tools.include_architecture_wildcard
        page: tools.page
        per_page: tools.per_page
      outputParameters:
      - type: object
        mapping: $.
    - name: get-iso
      description: Get an ISO
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hetzner-isos.getiso
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.