Qovery · Capability

Qovery API — Project Secret

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

Run with Naftiko QoveryProject Secret

What You Can Do

GET
Listprojectsecrets — List project secrets
/v1/project/{projectid}/secret
POST
Createprojectsecret — Add a secret to the project
/v1/project/{projectid}/secret
DELETE
Deleteprojectsecret — Delete a secret from a project
/v1/project/{projectid}/secret/{secretid}
PUT
Editprojectsecret — Edit a secret belonging to the project
/v1/project/{projectid}/secret/{secretid}
POST
Createprojectsecretalias — Create a secret alias at the project level
/v1/project/{projectid}/secret/{secretid}/alias
POST
Createprojectsecretoverride — Create a secret override at the project level
/v1/project/{projectid}/secret/{secretid}/override

MCP Tools

list-project-secrets

List project secrets

read-only idempotent
add-secret-project

Add a secret to the project

delete-secret-project

Delete a secret from a project

idempotent
edit-secret-belonging-project

Edit a secret belonging to the project

idempotent
create-secret-alias-project-level

Create a secret alias at the project level

create-secret-override-project-level

Create a secret override at the project level

Capability Spec

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