Qovery · Capability

Qovery API — Container Main Calls

Qovery API — Container Main Calls. 5 operations. Lead operation: Get container by ID. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryContainer Main Calls

What You Can Do

GET
Getcontainer — Get container by ID
/v1/container/{containerid}
PUT
Editcontainer — Edit container
/v1/container/{containerid}
DELETE
Deletecontainer — Delete container
/v1/container/{containerid}
GET
Listcontainerlinks — List all URLs of the container
/v1/container/{containerid}/link
GET
Getcontainerstatus — Get container status
/v1/container/{containerid}/status

MCP Tools

get-container-id

Get container by ID

read-only idempotent
edit-container

Edit container

idempotent
delete-container

Delete container

idempotent
list-all-urls-container

List all URLs of the container

read-only idempotent
get-container-status

Get container status

read-only idempotent

Capability Spec

qovery-container-main-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Container Main Calls
  description: 'Qovery API — Container Main Calls. 5 operations. Lead operation: Get container by ID. Self-contained Naftiko
    capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Container Main Calls
  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-main-calls
    baseUri: https://api.qovery.com
    description: Qovery API — Container Main Calls business capability. Self-contained, no shared references.
    resources:
    - name: container-containerId
      path: /container/{containerId}
      operations:
      - name: getcontainer
        method: GET
        description: Get container by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editcontainer
        method: PUT
        description: Edit container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletecontainer
        method: DELETE
        description: Delete container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: container-containerId-link
      path: /container/{containerId}/link
      operations:
      - name: listcontainerlinks
        method: GET
        description: List all URLs of the container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: container-containerId-status
      path: /container/{containerId}/status
      operations:
      - name: getcontainerstatus
        method: GET
        description: Get container status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-container-main-calls-rest
    port: 8080
    description: REST adapter for Qovery API — Container Main Calls. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/container/{containerid}
      name: container-containerid
      description: REST surface for container-containerId.
      operations:
      - method: GET
        name: getcontainer
        description: Get container by ID
        call: qovery-container-main-calls.getcontainer
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editcontainer
        description: Edit container
        call: qovery-container-main-calls.editcontainer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontainer
        description: Delete container
        call: qovery-container-main-calls.deletecontainer
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/link
      name: container-containerid-link
      description: REST surface for container-containerId-link.
      operations:
      - method: GET
        name: listcontainerlinks
        description: List all URLs of the container
        call: qovery-container-main-calls.listcontainerlinks
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/status
      name: container-containerid-status
      description: REST surface for container-containerId-status.
      operations:
      - method: GET
        name: getcontainerstatus
        description: Get container status
        call: qovery-container-main-calls.getcontainerstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-container-main-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Container Main Calls. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-container-id
      description: Get container by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-main-calls.getcontainer
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-container
      description: Edit container
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-container-main-calls.editcontainer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-container
      description: Delete container
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-container-main-calls.deletecontainer
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-urls-container
      description: List all URLs of the container
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-main-calls.listcontainerlinks
      outputParameters:
      - type: object
        mapping: $.
    - name: get-container-status
      description: Get container status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-main-calls.getcontainerstatus
      outputParameters:
      - type: object
        mapping: $.