Qovery · Capability

Qovery API — Container Environment Variable

Qovery API — Container Environment Variable. 7 operations. Lead operation: List environment variables. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryContainer Environment Variable

What You Can Do

GET
Listcontainerenvironmentvariable — List environment variables
/v1/container/{containerid}/environmentvariable
POST
Createcontainerenvironmentvariable — Add an environment variable to the container
/v1/container/{containerid}/environmentvariable
POST
Importcontainerenvironmentvariable — Import variables
/v1/container/{containerid}/environmentvariable/import
DELETE
Deletecontainerenvironmentvariable — Delete an environment variable from a container
/v1/container/{containerid}/environmentvariable/{environmentvariableid}
PUT
Editcontainerenvironmentvariable — Edit an environment variable belonging to the container
/v1/container/{containerid}/environmentvariable/{environmentvariableid}
POST
Createcontainerenvironmentvariablealias — Create an environment variable alias at the container level
/v1/container/{containerid}/environmentvariable/{environmentvariableid}/alias
POST
Createcontainerenvironmentvariableoverride — Create an environment variable override at the container level
/v1/container/{containerid}/environmentvariable/{environmentvariableid}/override

MCP Tools

list-environment-variables

List environment variables

read-only idempotent
add-environment-variable-container

Add an environment variable to the container

import-variables

Import variables

delete-environment-variable-container

Delete an environment variable from a container

idempotent
edit-environment-variable-belonging-container

Edit an environment variable belonging to the container

idempotent
create-environment-variable-alias-container

Create an environment variable alias at the container level

create-environment-variable-override-container

Create an environment variable override at the container level

Capability Spec

qovery-container-environment-variable.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Container Environment Variable
  description: 'Qovery API — Container Environment Variable. 7 operations. Lead operation: List environment variables. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Container Environment Variable
  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-environment-variable
    baseUri: https://api.qovery.com
    description: Qovery API — Container Environment Variable business capability. Self-contained, no shared references.
    resources:
    - name: container-containerId-environmentVariable
      path: /container/{containerId}/environmentVariable
      operations:
      - name: listcontainerenvironmentvariable
        method: GET
        description: List environment variables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontainerenvironmentvariable
        method: POST
        description: Add an environment variable 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-environmentVariable-import
      path: /container/{containerId}/environmentVariable/import
      operations:
      - name: importcontainerenvironmentvariable
        method: POST
        description: Import variables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: container-containerId-environmentVariable-environmentVariableId
      path: /container/{containerId}/environmentVariable/{environmentVariableId}
      operations:
      - name: deletecontainerenvironmentvariable
        method: DELETE
        description: Delete an environment variable from a container
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editcontainerenvironmentvariable
        method: PUT
        description: Edit an environment variable 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-environmentVariable-environmentVariableId-alias
      path: /container/{containerId}/environmentVariable/{environmentVariableId}/alias
      operations:
      - name: createcontainerenvironmentvariablealias
        method: POST
        description: Create an environment variable 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-environmentVariable-environmentVariableId-override
      path: /container/{containerId}/environmentVariable/{environmentVariableId}/override
      operations:
      - name: createcontainerenvironmentvariableoverride
        method: POST
        description: Create an environment variable 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-environment-variable-rest
    port: 8080
    description: REST adapter for Qovery API — Container Environment Variable. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/container/{containerid}/environmentvariable
      name: container-containerid-environmentvariable
      description: REST surface for container-containerId-environmentVariable.
      operations:
      - method: GET
        name: listcontainerenvironmentvariable
        description: List environment variables
        call: qovery-container-environment-variable.listcontainerenvironmentvariable
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontainerenvironmentvariable
        description: Add an environment variable to the container
        call: qovery-container-environment-variable.createcontainerenvironmentvariable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/environmentvariable/import
      name: container-containerid-environmentvariable-import
      description: REST surface for container-containerId-environmentVariable-import.
      operations:
      - method: POST
        name: importcontainerenvironmentvariable
        description: Import variables
        call: qovery-container-environment-variable.importcontainerenvironmentvariable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/environmentvariable/{environmentvariableid}
      name: container-containerid-environmentvariable-environmentvariableid
      description: REST surface for container-containerId-environmentVariable-environmentVariableId.
      operations:
      - method: DELETE
        name: deletecontainerenvironmentvariable
        description: Delete an environment variable from a container
        call: qovery-container-environment-variable.deletecontainerenvironmentvariable
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editcontainerenvironmentvariable
        description: Edit an environment variable belonging to the container
        call: qovery-container-environment-variable.editcontainerenvironmentvariable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/environmentvariable/{environmentvariableid}/alias
      name: container-containerid-environmentvariable-environmentvariableid-alias
      description: REST surface for container-containerId-environmentVariable-environmentVariableId-alias.
      operations:
      - method: POST
        name: createcontainerenvironmentvariablealias
        description: Create an environment variable alias at the container level
        call: qovery-container-environment-variable.createcontainerenvironmentvariablealias
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/container/{containerid}/environmentvariable/{environmentvariableid}/override
      name: container-containerid-environmentvariable-environmentvariableid-override
      description: REST surface for container-containerId-environmentVariable-environmentVariableId-override.
      operations:
      - method: POST
        name: createcontainerenvironmentvariableoverride
        description: Create an environment variable override at the container level
        call: qovery-container-environment-variable.createcontainerenvironmentvariableoverride
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-container-environment-variable-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Container Environment Variable. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-environment-variables
      description: List environment variables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-container-environment-variable.listcontainerenvironmentvariable
      outputParameters:
      - type: object
        mapping: $.
    - name: add-environment-variable-container
      description: Add an environment variable to the container
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-environment-variable.createcontainerenvironmentvariable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: import-variables
      description: Import variables
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-environment-variable.importcontainerenvironmentvariable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-environment-variable-container
      description: Delete an environment variable from a container
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-container-environment-variable.deletecontainerenvironmentvariable
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-environment-variable-belonging-container
      description: Edit an environment variable belonging to the container
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-container-environment-variable.editcontainerenvironmentvariable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-environment-variable-alias-container
      description: Create an environment variable alias at the container level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-environment-variable.createcontainerenvironmentvariablealias
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-environment-variable-override-container
      description: Create an environment variable override at the container level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-container-environment-variable.createcontainerenvironmentvariableoverride
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.