Qovery · Capability

Qovery API — Application Configuration

Qovery API — Application Configuration. 4 operations. Lead operation: Get advanced settings. Self-contained Naftiko capability covering one Qovery business surface.

Run with Naftiko QoveryApplication Configuration

What You Can Do

GET
Getadvancedsettings — Get advanced settings
/v1/application/{applicationid}/advancedsettings
PUT
Editadvancedsettings — Edit advanced settings
/v1/application/{applicationid}/advancedsettings
GET
Getapplicationnetwork — Get Application Network information
/v1/application/{applicationid}/network
PUT
Editapplicationnetwork — Edit Application Network
/v1/application/{applicationid}/network

MCP Tools

get-advanced-settings

Get advanced settings

read-only idempotent
edit-advanced-settings

Edit advanced settings

idempotent
get-application-network-information

Get Application Network information

read-only idempotent
edit-application-network

Edit Application Network

idempotent

Capability Spec

qovery-application-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qovery API — Application Configuration
  description: 'Qovery API — Application Configuration. 4 operations. Lead operation: Get advanced settings. Self-contained
    Naftiko capability covering one Qovery business surface.'
  tags:
  - Qovery
  - Application Configuration
  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-configuration
    baseUri: https://api.qovery.com
    description: Qovery API — Application Configuration business capability. Self-contained, no shared references.
    resources:
    - name: application-applicationId-advancedSettings
      path: /application/{applicationId}/advancedSettings
      operations:
      - name: getadvancedsettings
        method: GET
        description: Get advanced settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editadvancedsettings
        method: PUT
        description: Edit advanced settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: application-applicationId-network
      path: /application/{applicationId}/network
      operations:
      - name: getapplicationnetwork
        method: GET
        description: Get Application Network information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: editapplicationnetwork
        method: PUT
        description: Edit Application Network
        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-configuration-rest
    port: 8080
    description: REST adapter for Qovery API — Application Configuration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/application/{applicationid}/advancedsettings
      name: application-applicationid-advancedsettings
      description: REST surface for application-applicationId-advancedSettings.
      operations:
      - method: GET
        name: getadvancedsettings
        description: Get advanced settings
        call: qovery-application-configuration.getadvancedsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editadvancedsettings
        description: Edit advanced settings
        call: qovery-application-configuration.editadvancedsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/application/{applicationid}/network
      name: application-applicationid-network
      description: REST surface for application-applicationId-network.
      operations:
      - method: GET
        name: getapplicationnetwork
        description: Get Application Network information
        call: qovery-application-configuration.getapplicationnetwork
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editapplicationnetwork
        description: Edit Application Network
        call: qovery-application-configuration.editapplicationnetwork
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: qovery-application-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qovery API — Application Configuration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-advanced-settings
      description: Get advanced settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-application-configuration.getadvancedsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-advanced-settings
      description: Edit advanced settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-application-configuration.editadvancedsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application-network-information
      description: Get Application Network information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: qovery-application-configuration.getapplicationnetwork
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-application-network
      description: Edit Application Network
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: qovery-application-configuration.editapplicationnetwork
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.