Humanitec · Capability

Humanitec API — Image

Humanitec API — Image. 4 operations. Lead operation: List all Container Images. Self-contained Naftiko capability covering one Humanitec business surface.

Run with Naftiko HumanitecImage

What You Can Do

GET
Listdeprecatedimages — List all Container Images
/v1/orgs/{orgid}/images
GET
Getdeprecatedimage — Get a specific Image Object
/v1/orgs/{orgid}/images/{imageid}
GET
Listdeprecatedimagebuilds — Lists all the Builds of an Image
/v1/orgs/{orgid}/images/{imageid}/builds
POST
Createdeprecatedimagebuild — Add a new Image Build
/v1/orgs/{orgid}/images/{imageid}/builds

MCP Tools

list-all-container-images

List all Container Images

read-only idempotent
get-specific-image-object

Get a specific Image Object

read-only idempotent
lists-all-builds-image

Lists all the Builds of an Image

read-only idempotent
add-new-image-build

Add a new Image Build

Capability Spec

humanitec-image.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Humanitec API — Image
  description: 'Humanitec API — Image. 4 operations. Lead operation: List all Container Images. Self-contained Naftiko capability
    covering one Humanitec business surface.'
  tags:
  - Humanitec
  - Image
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUMANITEC_API_KEY: HUMANITEC_API_KEY
capability:
  consumes:
  - type: http
    namespace: humanitec-image
    baseUri: https://api.humanitec.io
    description: Humanitec API — Image business capability. Self-contained, no shared references.
    resources:
    - name: orgs-orgId-images
      path: /orgs/{orgId}/images
      operations:
      - name: listdeprecatedimages
        method: GET
        description: List all Container Images
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The organization ID.
          required: true
    - name: orgs-orgId-images-imageId
      path: /orgs/{orgId}/images/{imageId}
      operations:
      - name: getdeprecatedimage
        method: GET
        description: Get a specific Image Object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The organization ID.
          required: true
        - name: imageId
          in: path
          type: string
          description: The Image ID.
          required: true
    - name: orgs-orgId-images-imageId-builds
      path: /orgs/{orgId}/images/{imageId}/builds
      operations:
      - name: listdeprecatedimagebuilds
        method: GET
        description: Lists all the Builds of an Image
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The organization ID.
          required: true
        - name: imageId
          in: path
          type: string
          description: The Image ID.
          required: true
      - name: createdeprecatedimagebuild
        method: POST
        description: Add a new Image Build
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The organization ID.
          required: true
        - name: imageId
          in: path
          type: string
          description: The Image ID.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: humanitec-image-rest
    port: 8080
    description: REST adapter for Humanitec API — Image. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/orgs/{orgid}/images
      name: orgs-orgid-images
      description: REST surface for orgs-orgId-images.
      operations:
      - method: GET
        name: listdeprecatedimages
        description: List all Container Images
        call: humanitec-image.listdeprecatedimages
        with:
          orgId: rest.orgId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orgs/{orgid}/images/{imageid}
      name: orgs-orgid-images-imageid
      description: REST surface for orgs-orgId-images-imageId.
      operations:
      - method: GET
        name: getdeprecatedimage
        description: Get a specific Image Object
        call: humanitec-image.getdeprecatedimage
        with:
          orgId: rest.orgId
          imageId: rest.imageId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orgs/{orgid}/images/{imageid}/builds
      name: orgs-orgid-images-imageid-builds
      description: REST surface for orgs-orgId-images-imageId-builds.
      operations:
      - method: GET
        name: listdeprecatedimagebuilds
        description: Lists all the Builds of an Image
        call: humanitec-image.listdeprecatedimagebuilds
        with:
          orgId: rest.orgId
          imageId: rest.imageId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdeprecatedimagebuild
        description: Add a new Image Build
        call: humanitec-image.createdeprecatedimagebuild
        with:
          orgId: rest.orgId
          imageId: rest.imageId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: humanitec-image-mcp
    port: 9090
    transport: http
    description: MCP adapter for Humanitec API — Image. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-container-images
      description: List all Container Images
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: humanitec-image.listdeprecatedimages
      with:
        orgId: tools.orgId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-image-object
      description: Get a specific Image Object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: humanitec-image.getdeprecatedimage
      with:
        orgId: tools.orgId
        imageId: tools.imageId
      outputParameters:
      - type: object
        mapping: $.
    - name: lists-all-builds-image
      description: Lists all the Builds of an Image
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: humanitec-image.listdeprecatedimagebuilds
      with:
        orgId: tools.orgId
        imageId: tools.imageId
      outputParameters:
      - type: object
        mapping: $.
    - name: add-new-image-build
      description: Add a new Image Build
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: humanitec-image.createdeprecatedimagebuild
      with:
        orgId: tools.orgId
        imageId: tools.imageId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.