Qovery · Capability

Qovery API — Job Secret

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

Run with Naftiko QoveryJob Secret

What You Can Do

GET
Listjobsecrets — List job secrets
/v1/job/{jobid}/secret
POST
Createjobsecret — Add a secret to the job
/v1/job/{jobid}/secret
DELETE
Deletejobsecret — Delete a secret from an job
/v1/job/{jobid}/secret/{secretid}
PUT
Editjobsecret — Edit a secret belonging to the job
/v1/job/{jobid}/secret/{secretid}
POST
Createjobsecretalias — Create a secret alias at the job level
/v1/job/{jobid}/secret/{secretid}/alias
POST
Createjobsecretoverride — Create a secret override at the job level
/v1/job/{jobid}/secret/{secretid}/override

MCP Tools

list-job-secrets

List job secrets

read-only idempotent
add-secret-job

Add a secret to the job

delete-secret-job

Delete a secret from an job

idempotent
edit-secret-belonging-job

Edit a secret belonging to the job

idempotent
create-secret-alias-job-level

Create a secret alias at the job level

create-secret-override-job-level

Create a secret override at the job level

Capability Spec

qovery-job-secret.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Job Secret
  description: 'Qovery API — Job Secret. 6 operations. Lead operation: List job secrets. Self-contained Naftiko capability
    covering one Qovery business surface.'
  tags:
  - Qovery
  - Job 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-job-secret
    baseUri: https://api.qovery.com
    description: Qovery API — Job Secret business capability. Self-contained, no shared references.
    resources:
    - name: job-jobId-secret
      path: /job/{jobId}/secret
      operations:
      - name: listjobsecrets
        method: GET
        description: List job secrets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createjobsecret
        method: POST
        description: Add a secret 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-secret-secretId
      path: /job/{jobId}/secret/{secretId}
      operations:
      - name: deletejobsecret
        method: DELETE
        description: Delete a secret from an job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editjobsecret
        method: PUT
        description: Edit a secret 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-secret-secretId-alias
      path: /job/{jobId}/secret/{secretId}/alias
      operations:
      - name: createjobsecretalias
        method: POST
        description: Create a secret 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-secret-secretId-override
      path: /job/{jobId}/secret/{secretId}/override
      operations:
      - name: createjobsecretoverride
        method: POST
        description: Create a secret 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-secret-rest
    port: 8080
    description: REST adapter for Qovery API — Job Secret. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/job/{jobid}/secret
      name: job-jobid-secret
      description: REST surface for job-jobId-secret.
      operations:
      - method: GET
        name: listjobsecrets
        description: List job secrets
        call: qovery-job-secret.listjobsecrets
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createjobsecret
        description: Add a secret to the job
        call: qovery-job-secret.createjobsecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/job/{jobid}/secret/{secretid}
      name: job-jobid-secret-secretid
      description: REST surface for job-jobId-secret-secretId.
      operations:
      - method: DELETE
        name: deletejobsecret
        description: Delete a secret from an job
        call: qovery-job-secret.deletejobsecret
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editjobsecret
        description: Edit a secret belonging to the job
        call: qovery-job-secret.editjobsecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/job/{jobid}/secret/{secretid}/alias
      name: job-jobid-secret-secretid-alias
      description: REST surface for job-jobId-secret-secretId-alias.
      operations:
      - method: POST
        name: createjobsecretalias
        description: Create a secret alias at the job level
        call: qovery-job-secret.createjobsecretalias
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/job/{jobid}/secret/{secretid}/override
      name: job-jobid-secret-secretid-override
      description: REST surface for job-jobId-secret-secretId-override.
      operations:
      - method: POST
        name: createjobsecretoverride
        description: Create a secret override at the job level
        call: qovery-job-secret.createjobsecretoverride
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-job-secret-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Job Secret. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-job-secrets
      description: List job secrets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-job-secret.listjobsecrets
      outputParameters:
      - type: object
        mapping: $.
    - name: add-secret-job
      description: Add a secret to the job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-job-secret.createjobsecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-secret-job
      description: Delete a secret from an job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: qovery-job-secret.deletejobsecret
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-secret-belonging-job
      description: Edit a secret belonging to the job
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-job-secret.editjobsecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-secret-alias-job-level
      description: Create a secret alias at the job level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-job-secret.createjobsecretalias
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-secret-override-job-level
      description: Create a secret override at the job level
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-job-secret.createjobsecretoverride
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.