Qovery · Capability

Qovery API — Container Registries

Qovery API — Container Registries. 7 operations. Lead operation: List supported container registries. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryContainer Registries

What You Can Do

GET
Listavailablecontainerregistry — List supported container registries
/v1/availablecontainerregistry
GET
Listcontainerregistry — List organization container registries
/v1/organization/{organizationid}/containerregistry
POST
Createcontainerregistry — Create a container registry
/v1/organization/{organizationid}/containerregistry
GET
Getcontainerregistry — Get a container registry
/v1/organization/{organizationid}/containerregistry/{containerregistryid}
DELETE
Deletecontainerregistry — Delete a container registry
/v1/organization/{organizationid}/containerregistry/{containerregistryid}
PUT
Editcontainerregistry — Edit a container registry
/v1/organization/{organizationid}/containerregistry/{containerregistryid}
GET
Getcontainerversions — List image version for a container registry
/v1/organization/{organizationid}/containerregistry/{containerregistryid}/images

MCP Tools

list-supported-container-registries

List supported container registries

read-only idempotent
list-organization-container-registries

List organization container registries

read-only idempotent
create-container-registry

Create a container registry

get-container-registry

Get a container registry

read-only idempotent
delete-container-registry

Delete a container registry

idempotent
edit-container-registry

Edit a container registry

idempotent
list-image-version-container-registry

List image version for a container registry

read-only idempotent

Capability Spec

qovery-container-registries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Container Registries
  description: 'Qovery API — Container Registries. 7 operations. Lead operation: List supported container registries. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Container Registries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-container-registries
    baseUri: https://api.qovery.com
    description: Qovery API — Container Registries business capability. Self-contained, no shared references.
    resources:
    - name: availableContainerRegistry
      path: /availableContainerRegistry
      operations:
      - name: listavailablecontainerregistry
        method: GET
        description: List supported container registries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: organization-organizationId-containerRegistry
      path: /organization/{organizationId}/containerRegistry
      operations:
      - name: listcontainerregistry
        method: GET
        description: List organization container registries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontainerregistry
        method: POST
        description: Create a container registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-containerRegistry-containerRegistryId
      path: /organization/{organizationId}/containerRegistry/{containerRegistryId}
      operations:
      - name: getcontainerregistry
        method: GET
        description: Get a container registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletecontainerregistry
        method: DELETE
        description: Delete a container registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editcontainerregistry
        method: PUT
        description: Edit a container registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-containerRegistry-containerRegistryId-images
      path: /organization/{organizationId}/containerRegistry/{containerRegistryId}/images
      operations:
      - name: getcontainerversions
        method: GET
        description: List image version for a container registry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-container-registries-rest
    port: 8080
    description: REST adapter for Qovery API — Container Registries. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/availablecontainerregistry
      name: availablecontainerregistry
      description: REST surface for availableContainerRegistry.
      operations:
      - method: GET
        name: listavailablecontainerregistry
        description: List supported container registries
        call: qovery-container-registries.listavailablecontainerregistry
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/containerregistry
      name: organization-organizationid-containerregistry
      description: REST surface for organization-organizationId-containerRegistry.
      operations:
      - method: GET
        name: listcontainerregistry
        description: List organization container registries
        call: qovery-container-registries.listcontainerregistry
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontainerregistry
        description: Create a container registry
        call: qovery-container-registries.createcontainerregistry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/containerregistry/{containerregistryid}
      name: organization-organizationid-containerregistry-containerregistryid
      description: REST surface for organization-organizationId-containerRegistry-containerRegistryId.
      operations:
      - method: GET
        name: getcontainerregistry
        description: Get a container registry
        call: qovery-container-registries.getcontainerregistry
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontainerregistry
        description: Delete a container registry
        call: qovery-container-registries.deletecontainerregistry
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editcontainerregistry
        description: Edit a container registry
        call: qovery-container-registries.editcontainerregistry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/containerregistry/{containerregistryid}/images
      name: organization-organizationid-containerregistry-containerregistryid-images
      description: REST surface for organization-organizationId-containerRegistry-containerRegistryId-images.
      operations:
      - method: GET
        name: getcontainerversions
        description: List image version for a container registry
        call: qovery-container-registries.getcontainerversions
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-container-registries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Container Registries. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-supported-container-registries
      description: List supported container registries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-registries.listavailablecontainerregistry
      outputParameters:
      - type: object
        mapping: $.
    - name: list-organization-container-registries
      description: List organization container registries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-registries.listcontainerregistry
      outputParameters:
      - type: object
        mapping: $.
    - name: create-container-registry
      description: Create a container registry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-registries.createcontainerregistry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-container-registry
      description: Get a container registry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-registries.getcontainerregistry
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-container-registry
      description: Delete a container registry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-container-registries.deletecontainerregistry
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-container-registry
      description: Edit a container registry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-container-registries.editcontainerregistry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-image-version-container-registry
      description: List image version for a container registry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-registries.getcontainerversions
      outputParameters:
      - type: object
        mapping: $.