Qovery · Capability

Qovery API — Containers

Qovery API — Containers. 8 operations. Lead operation: Clone container. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryContainers

What You Can Do

POST
Clonecontainer — Clone container
/v1/container/{containerid}/clone
GET
Getdefaultcontaineradvancedsettings — List default container advanced settings
/v1/defaultcontaineradvancedsettings
GET
Listcontainer — List containers
/v1/environment/{environmentid}/container
POST
Createcontainer — Create a container
/v1/environment/{environmentid}/container
GET
Getenvironmentcontainerstatus — List all environment container statuses
/v1/environment/{environmentid}/container/status
POST
Autodeploycontainerenvironments — Auto deploy containers
/v1/organization/{organizationid}/container/deploy
POST
Previewcontainerenvironments — Preview container environments
/v1/organization/{organizationid}/container/preview
GET
Getcontainerregistrycontainerstatus — List all container registry container statuses
/v1/organization/{organizationid}/containerregistry/{containerregistryid}/container/status

MCP Tools

clone-container

Clone container

list-default-container-advanced-settings

List default container advanced settings

read-only idempotent
list-containers

List containers

read-only idempotent
create-container

Create a container

list-all-environment-container-statuses

List all environment container statuses

read-only idempotent
auto-deploy-containers

Auto deploy containers

preview-container-environments

Preview container environments

list-all-container-registry-container

List all container registry container statuses

read-only idempotent

Capability Spec

qovery-containers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Containers
  description: 'Qovery API — Containers. 8 operations. Lead operation: Clone container. Self-contained Naftiko capability
    covering one Qovery business surface.'
  tags:
  - Qovery
  - Containers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-containers
    baseUri: https://api.qovery.com
    description: Qovery API — Containers business capability. Self-contained, no shared references.
    resources:
    - name: container-containerId-clone
      path: /container/{containerId}/clone
      operations:
      - name: clonecontainer
        method: POST
        description: Clone container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: defaultContainerAdvancedSettings
      path: /defaultContainerAdvancedSettings
      operations:
      - name: getdefaultcontaineradvancedsettings
        method: GET
        description: List default container advanced settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: environment-environmentId-container
      path: /environment/{environmentId}/container
      operations:
      - name: listcontainer
        method: GET
        description: List containers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontainer
        method: POST
        description: Create a container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: environment-environmentId-container-status
      path: /environment/{environmentId}/container/status
      operations:
      - name: getenvironmentcontainerstatus
        method: GET
        description: List all environment container statuses
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: organization-organizationId-container-deploy
      path: /organization/{organizationId}/container/deploy
      operations:
      - name: autodeploycontainerenvironments
        method: POST
        description: Auto deploy containers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: organization-organizationId-container-preview
      path: /organization/{organizationId}/container/preview
      operations:
      - name: previewcontainerenvironments
        method: POST
        description: Preview container environments
        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-container-stat
      path: /organization/{organizationId}/containerRegistry/{containerRegistryId}/container/status
      operations:
      - name: getcontainerregistrycontainerstatus
        method: GET
        description: List all container registry container statuses
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-containers-rest
    port: 8080
    description: REST adapter for Qovery API — Containers. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/container/{containerid}/clone
      name: container-containerid-clone
      description: REST surface for container-containerId-clone.
      operations:
      - method: POST
        name: clonecontainer
        description: Clone container
        call: qovery-containers.clonecontainer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/defaultcontaineradvancedsettings
      name: defaultcontaineradvancedsettings
      description: REST surface for defaultContainerAdvancedSettings.
      operations:
      - method: GET
        name: getdefaultcontaineradvancedsettings
        description: List default container advanced settings
        call: qovery-containers.getdefaultcontaineradvancedsettings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/{environmentid}/container
      name: environment-environmentid-container
      description: REST surface for environment-environmentId-container.
      operations:
      - method: GET
        name: listcontainer
        description: List containers
        call: qovery-containers.listcontainer
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontainer
        description: Create a container
        call: qovery-containers.createcontainer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/{environmentid}/container/status
      name: environment-environmentid-container-status
      description: REST surface for environment-environmentId-container-status.
      operations:
      - method: GET
        name: getenvironmentcontainerstatus
        description: List all environment container statuses
        call: qovery-containers.getenvironmentcontainerstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/container/deploy
      name: organization-organizationid-container-deploy
      description: REST surface for organization-organizationId-container-deploy.
      operations:
      - method: POST
        name: autodeploycontainerenvironments
        description: Auto deploy containers
        call: qovery-containers.autodeploycontainerenvironments
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/container/preview
      name: organization-organizationid-container-preview
      description: REST surface for organization-organizationId-container-preview.
      operations:
      - method: POST
        name: previewcontainerenvironments
        description: Preview container environments
        call: qovery-containers.previewcontainerenvironments
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization/{organizationid}/containerregistry/{containerregistryid}/container/status
      name: organization-organizationid-containerregistry-containerregistryid-container-stat
      description: REST surface for organization-organizationId-containerRegistry-containerRegistryId-container-stat.
      operations:
      - method: GET
        name: getcontainerregistrycontainerstatus
        description: List all container registry container statuses
        call: qovery-containers.getcontainerregistrycontainerstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-containers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Containers. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: clone-container
      description: Clone container
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-containers.clonecontainer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-default-container-advanced-settings
      description: List default container advanced settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-containers.getdefaultcontaineradvancedsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: list-containers
      description: List containers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-containers.listcontainer
      outputParameters:
      - type: object
        mapping: $.
    - name: create-container
      description: Create a container
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-containers.createcontainer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-environment-container-statuses
      description: List all environment container statuses
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-containers.getenvironmentcontainerstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: auto-deploy-containers
      description: Auto deploy containers
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-containers.autodeploycontainerenvironments
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: preview-container-environments
      description: Preview container environments
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-containers.previewcontainerenvironments
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-container-registry-container
      description: List all container registry container statuses
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-containers.getcontainerregistrycontainerstatus
      outputParameters:
      - type: object
        mapping: $.