Qovery · Capability

Qovery API — Job Environment Variable

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

Run with Naftiko QoveryJob Environment Variable

What You Can Do

GET
Listjobenvironmentvariable — List environment variables
/v1/job/{jobid}/environmentvariable
POST
Createjobenvironmentvariable — Add an environment variable to the job
/v1/job/{jobid}/environmentvariable
POST
Importjobenvironmentvariable — Import variables
/v1/job/{jobid}/environmentvariable/import
DELETE
Deletejobenvironmentvariable — Delete an environment variable from a job
/v1/job/{jobid}/environmentvariable/{environmentvariableid}
PUT
Editjobenvironmentvariable — Edit an environment variable belonging to the job
/v1/job/{jobid}/environmentvariable/{environmentvariableid}
POST
Createjobenvironmentvariablealias — Create an environment variable alias at the job level
/v1/job/{jobid}/environmentvariable/{environmentvariableid}/alias
POST
Createjobenvironmentvariableoverride — Create an environment variable override at the job level
/v1/job/{jobid}/environmentvariable/{environmentvariableid}/override

MCP Tools

list-environment-variables

List environment variables

read-only idempotent
add-environment-variable-job

Add an environment variable to the job

import-variables

Import variables

delete-environment-variable-job

Delete an environment variable from a job

idempotent
edit-environment-variable-belonging-job

Edit an environment variable belonging to the job

idempotent
create-environment-variable-alias-job

Create an environment variable alias at the job level

create-environment-variable-override-job

Create an environment variable override at the job level

Capability Spec

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