Qovery · Capability

Qovery API — Applications

Qovery API — Applications. 5 operations. Lead operation: Clone application. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryApplications

What You Can Do

POST
Cloneapplication — Clone application
/v1/application/{applicationid}/clone
GET
Getdefaultapplicationadvancedsettings — List default application advanced settings
/v1/defaultapplicationadvancedsettings
GET
Listapplication — List applications
/v1/environment/{environmentid}/application
POST
Createapplication — Create an application
/v1/environment/{environmentid}/application
GET
Getenvironmentapplicationstatus — List all environment applications statuses
/v1/environment/{environmentid}/application/status

MCP Tools

clone-application

Clone application

list-default-application-advanced-settings

List default application advanced settings

read-only idempotent
list-applications

List applications

read-only idempotent
create-application

Create an application

list-all-environment-applications-statuses

List all environment applications statuses

read-only idempotent

Capability Spec

qovery-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Applications
  description: 'Qovery API — Applications. 5 operations. Lead operation: Clone application. Self-contained Naftiko capability
    covering one Qovery business surface.'
  tags:
  - Qovery
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-applications
    baseUri: https://api.qovery.com
    description: Qovery API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: application-applicationId-clone
      path: /application/{applicationId}/clone
      operations:
      - name: cloneapplication
        method: POST
        description: Clone application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: defaultApplicationAdvancedSettings
      path: /defaultApplicationAdvancedSettings
      operations:
      - name: getdefaultapplicationadvancedsettings
        method: GET
        description: List default application advanced settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: environment-environmentId-application
      path: /environment/{environmentId}/application
      operations:
      - name: listapplication
        method: GET
        description: List applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplication
        method: POST
        description: Create an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: environment-environmentId-application-status
      path: /environment/{environmentId}/application/status
      operations:
      - name: getenvironmentapplicationstatus
        method: GET
        description: List all environment applications statuses
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QOVERY_API_KEY}}'
  exposes:
  - type: rest
    namespace: qovery-applications-rest
    port: 8080
    description: REST adapter for Qovery API — Applications. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/application/{applicationid}/clone
      name: application-applicationid-clone
      description: REST surface for application-applicationId-clone.
      operations:
      - method: POST
        name: cloneapplication
        description: Clone application
        call: qovery-applications.cloneapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/defaultapplicationadvancedsettings
      name: defaultapplicationadvancedsettings
      description: REST surface for defaultApplicationAdvancedSettings.
      operations:
      - method: GET
        name: getdefaultapplicationadvancedsettings
        description: List default application advanced settings
        call: qovery-applications.getdefaultapplicationadvancedsettings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/{environmentid}/application
      name: environment-environmentid-application
      description: REST surface for environment-environmentId-application.
      operations:
      - method: GET
        name: listapplication
        description: List applications
        call: qovery-applications.listapplication
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Create an application
        call: qovery-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/{environmentid}/application/status
      name: environment-environmentid-application-status
      description: REST surface for environment-environmentId-application-status.
      operations:
      - method: GET
        name: getenvironmentapplicationstatus
        description: List all environment applications statuses
        call: qovery-applications.getenvironmentapplicationstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Applications. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: clone-application
      description: Clone application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-applications.cloneapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-default-application-advanced-settings
      description: List default application advanced settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-applications.getdefaultapplicationadvancedsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: list-applications
      description: List applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-applications.listapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: create-application
      description: Create an application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-environment-applications-statuses
      description: List all environment applications statuses
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-applications.getenvironmentapplicationstatus
      outputParameters:
      - type: object
        mapping: $.