Qovery · Capability

Qovery API — Container Secret

Qovery API — Container Secret. 6 operations. Lead operation: List container secrets. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryContainer Secret

What You Can Do

GET
Listcontainersecrets — List container secrets
/v1/container/{containerid}/secret
POST
Createcontainersecret — Add a secret to the container
/v1/container/{containerid}/secret
DELETE
Deletecontainersecret — Delete a secret from an container
/v1/container/{containerid}/secret/{secretid}
PUT
Editcontainersecret — Edit a secret belonging to the container
/v1/container/{containerid}/secret/{secretid}
POST
Createcontainersecretalias — Create a secret alias at the container level
/v1/container/{containerid}/secret/{secretid}/alias
POST
Createcontainersecretoverride — Create a secret override at the container level
/v1/container/{containerid}/secret/{secretid}/override

MCP Tools

list-container-secrets

List container secrets

read-only idempotent
add-secret-container

Add a secret to the container

delete-secret-container

Delete a secret from an container

idempotent
edit-secret-belonging-container

Edit a secret belonging to the container

idempotent
create-secret-alias-container-level

Create a secret alias at the container level

create-secret-override-container-level

Create a secret override at the container level

Capability Spec

qovery-container-secret.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Container Secret
  description: 'Qovery API — Container Secret. 6 operations. Lead operation: List container secrets. Self-contained Naftiko
    capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Container Secret
  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-secret
    baseUri: https://api.qovery.com
    description: Qovery API — Container Secret business capability. Self-contained, no shared references.
    resources:
    - name: container-containerId-secret
      path: /container/{containerId}/secret
      operations:
      - name: listcontainersecrets
        method: GET
        description: List container secrets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontainersecret
        method: POST
        description: Add a secret to the container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: container-containerId-secret-secretId
      path: /container/{containerId}/secret/{secretId}
      operations:
      - name: deletecontainersecret
        method: DELETE
        description: Delete a secret from an container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editcontainersecret
        method: PUT
        description: Edit a secret belonging to the container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: container-containerId-secret-secretId-alias
      path: /container/{containerId}/secret/{secretId}/alias
      operations:
      - name: createcontainersecretalias
        method: POST
        description: Create a secret alias at the container level
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: container-containerId-secret-secretId-override
      path: /container/{containerId}/secret/{secretId}/override
      operations:
      - name: createcontainersecretoverride
        method: POST
        description: Create a secret override at the container level
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-container-secret-rest
    port: 8080
    description: REST adapter for Qovery API — Container Secret. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/container/{containerid}/secret
      name: container-containerid-secret
      description: REST surface for container-containerId-secret.
      operations:
      - method: GET
        name: listcontainersecrets
        description: List container secrets
        call: qovery-container-secret.listcontainersecrets
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontainersecret
        description: Add a secret to the container
        call: qovery-container-secret.createcontainersecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/secret/{secretid}
      name: container-containerid-secret-secretid
      description: REST surface for container-containerId-secret-secretId.
      operations:
      - method: DELETE
        name: deletecontainersecret
        description: Delete a secret from an container
        call: qovery-container-secret.deletecontainersecret
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editcontainersecret
        description: Edit a secret belonging to the container
        call: qovery-container-secret.editcontainersecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/secret/{secretid}/alias
      name: container-containerid-secret-secretid-alias
      description: REST surface for container-containerId-secret-secretId-alias.
      operations:
      - method: POST
        name: createcontainersecretalias
        description: Create a secret alias at the container level
        call: qovery-container-secret.createcontainersecretalias
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/secret/{secretid}/override
      name: container-containerid-secret-secretid-override
      description: REST surface for container-containerId-secret-secretId-override.
      operations:
      - method: POST
        name: createcontainersecretoverride
        description: Create a secret override at the container level
        call: qovery-container-secret.createcontainersecretoverride
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-container-secret-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Container Secret. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-container-secrets
      description: List container secrets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-secret.listcontainersecrets
      outputParameters:
      - type: object
        mapping: $.
    - name: add-secret-container
      description: Add a secret to the container
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-secret.createcontainersecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-secret-container
      description: Delete a secret from an container
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-container-secret.deletecontainersecret
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-secret-belonging-container
      description: Edit a secret belonging to the container
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-container-secret.editcontainersecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-secret-alias-container-level
      description: Create a secret alias at the container level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-secret.createcontainersecretalias
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-secret-override-container-level
      description: Create a secret override at the container level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-secret.createcontainersecretoverride
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.