Qovery · Capability

Qovery API — Container Actions

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

Run with Naftiko QoveryContainer Actions

What You Can Do

POST
Deploycontainer — Deploy container
/v1/container/{containerid}/deploy
POST
Redeploycontainer — Redeploy container
/v1/container/{containerid}/redeploy
POST
Rebootcontainer — Reboot container
/v1/container/{containerid}/restart-service
POST
Stopcontainer — Stop container
/v1/container/{containerid}/stop
POST
Uninstallcontainer — Uninstall container
/v1/container/{containerid}/uninstall

MCP Tools

deploy-container

Deploy container

redeploy-container

Redeploy container

reboot-container

Reboot container

stop-container

Stop container

uninstall-container

Uninstall container

Capability Spec

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