Qovery · Capability

Qovery API — Application Actions

Qovery API — Application Actions. 5 operations. Lead operation: Deploy application. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryApplication Actions

What You Can Do

POST
Deployapplication — Deploy application
/v1/application/{applicationid}/deploy
POST
Redeployapplication — Redeploy application
/v1/application/{applicationid}/redeploy
POST
Rebootapplication — Reboot application
/v1/application/{applicationid}/restart-service
POST
Stopapplication — Stop application
/v1/application/{applicationid}/stop
POST
Uninstallapplication — Uninstall application
/v1/application/{applicationid}/uninstall

MCP Tools

deploy-application

Deploy application

redeploy-application

Redeploy application

reboot-application

Reboot application

stop-application

Stop application

uninstall-application

Uninstall application

Capability Spec

qovery-application-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Application Actions
  description: 'Qovery API — Application Actions. 5 operations. Lead operation: Deploy application. Self-contained Naftiko
    capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Application Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QOVERY_API_KEY: QOVERY_API_KEY
capability:
  consumes:
  - type: http
    namespace: qovery-application-actions
    baseUri: https://api.qovery.com
    description: Qovery API — Application Actions business capability. Self-contained, no shared references.
    resources:
    - name: application-applicationId-deploy
      path: /application/{applicationId}/deploy
      operations:
      - name: deployapplication
        method: POST
        description: Deploy application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: application-applicationId-redeploy
      path: /application/{applicationId}/redeploy
      operations:
      - name: redeployapplication
        method: POST
        description: Redeploy application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: application-applicationId-restart-service
      path: /application/{applicationId}/restart-service
      operations:
      - name: rebootapplication
        method: POST
        description: Reboot application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: application-applicationId-stop
      path: /application/{applicationId}/stop
      operations:
      - name: stopapplication
        method: POST
        description: Stop application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: application-applicationId-uninstall
      path: /application/{applicationId}/uninstall
      operations:
      - name: uninstallapplication
        method: POST
        description: Uninstall application
        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-application-actions-rest
    port: 8080
    description: REST adapter for Qovery API — Application Actions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/application/{applicationid}/deploy
      name: application-applicationid-deploy
      description: REST surface for application-applicationId-deploy.
      operations:
      - method: POST
        name: deployapplication
        description: Deploy application
        call: qovery-application-actions.deployapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/application/{applicationid}/redeploy
      name: application-applicationid-redeploy
      description: REST surface for application-applicationId-redeploy.
      operations:
      - method: POST
        name: redeployapplication
        description: Redeploy application
        call: qovery-application-actions.redeployapplication
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/application/{applicationid}/restart-service
      name: application-applicationid-restart-service
      description: REST surface for application-applicationId-restart-service.
      operations:
      - method: POST
        name: rebootapplication
        description: Reboot application
        call: qovery-application-actions.rebootapplication
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/application/{applicationid}/stop
      name: application-applicationid-stop
      description: REST surface for application-applicationId-stop.
      operations:
      - method: POST
        name: stopapplication
        description: Stop application
        call: qovery-application-actions.stopapplication
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/application/{applicationid}/uninstall
      name: application-applicationid-uninstall
      description: REST surface for application-applicationId-uninstall.
      operations:
      - method: POST
        name: uninstallapplication
        description: Uninstall application
        call: qovery-application-actions.uninstallapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-application-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Application Actions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: deploy-application
      description: Deploy application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-application-actions.deployapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: redeploy-application
      description: Redeploy application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-application-actions.redeployapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: reboot-application
      description: Reboot application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-application-actions.rebootapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: stop-application
      description: Stop application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-application-actions.stopapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: uninstall-application
      description: Uninstall application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: qovery-application-actions.uninstallapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.