Citrix · Capability

Citrix DaaS REST API — Delivery Groups

Citrix DaaS REST API — Delivery Groups. 5 operations. Lead operation: Citrix List delivery groups. Self-contained Naftiko capability covering one Citrix business surface.

Run with Naftiko CitrixDelivery Groups

What You Can Do

GET
Listdeliverygroups — Citrix List delivery groups
/v1/deliverygroups
POST
Createdeliverygroup — Citrix Create a delivery group
/v1/deliverygroups
GET
Getdeliverygroup — Citrix Get a delivery group
/v1/deliverygroups/{deliverygroupid}
PUT
Updatedeliverygroup — Citrix Update a delivery group
/v1/deliverygroups/{deliverygroupid}
DELETE
Deletedeliverygroup — Citrix Delete a delivery group
/v1/deliverygroups/{deliverygroupid}

MCP Tools

citrix-list-delivery-groups

Citrix List delivery groups

read-only idempotent
citrix-create-delivery-group

Citrix Create a delivery group

citrix-get-delivery-group

Citrix Get a delivery group

read-only idempotent
citrix-update-delivery-group

Citrix Update a delivery group

idempotent
citrix-delete-delivery-group

Citrix Delete a delivery group

idempotent

Capability Spec

daas-delivery-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Citrix DaaS REST API — Delivery Groups
  description: 'Citrix DaaS REST API — Delivery Groups. 5 operations. Lead operation: Citrix List delivery groups. Self-contained
    Naftiko capability covering one Citrix business surface.'
  tags:
  - Citrix
  - Delivery Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CITRIX_API_KEY: CITRIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: daas-delivery-groups
    baseUri: https://api.cloud.com/cvad/manage
    description: Citrix DaaS REST API — Delivery Groups business capability. Self-contained, no shared references.
    resources:
    - name: DeliveryGroups
      path: /DeliveryGroups
      operations:
      - name: listdeliverygroups
        method: GET
        description: Citrix List delivery groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createdeliverygroup
        method: POST
        description: Citrix Create a delivery group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: DeliveryGroups-deliveryGroupId
      path: /DeliveryGroups/{deliveryGroupId}
      operations:
      - name: getdeliverygroup
        method: GET
        description: Citrix Get a delivery group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedeliverygroup
        method: PUT
        description: Citrix Update a delivery group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedeliverygroup
        method: DELETE
        description: Citrix Delete a delivery group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CITRIX_API_KEY}}'
  exposes:
  - type: rest
    namespace: daas-delivery-groups-rest
    port: 8080
    description: REST adapter for Citrix DaaS REST API — Delivery Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/deliverygroups
      name: deliverygroups
      description: REST surface for DeliveryGroups.
      operations:
      - method: GET
        name: listdeliverygroups
        description: Citrix List delivery groups
        call: daas-delivery-groups.listdeliverygroups
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdeliverygroup
        description: Citrix Create a delivery group
        call: daas-delivery-groups.createdeliverygroup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/deliverygroups/{deliverygroupid}
      name: deliverygroups-deliverygroupid
      description: REST surface for DeliveryGroups-deliveryGroupId.
      operations:
      - method: GET
        name: getdeliverygroup
        description: Citrix Get a delivery group
        call: daas-delivery-groups.getdeliverygroup
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedeliverygroup
        description: Citrix Update a delivery group
        call: daas-delivery-groups.updatedeliverygroup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeliverygroup
        description: Citrix Delete a delivery group
        call: daas-delivery-groups.deletedeliverygroup
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: daas-delivery-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Citrix DaaS REST API — Delivery Groups. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: citrix-list-delivery-groups
      description: Citrix List delivery groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: daas-delivery-groups.listdeliverygroups
      outputParameters:
      - type: object
        mapping: $.
    - name: citrix-create-delivery-group
      description: Citrix Create a delivery group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: daas-delivery-groups.createdeliverygroup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: citrix-get-delivery-group
      description: Citrix Get a delivery group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: daas-delivery-groups.getdeliverygroup
      outputParameters:
      - type: object
        mapping: $.
    - name: citrix-update-delivery-group
      description: Citrix Update a delivery group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: daas-delivery-groups.updatedeliverygroup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: citrix-delete-delivery-group
      description: Citrix Delete a delivery group
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: daas-delivery-groups.deletedeliverygroup
      outputParameters:
      - type: object
        mapping: $.