Citrix · Capability

Citrix DaaS REST API — Applications

Citrix DaaS REST API — Applications. 2 operations. Lead operation: Citrix List applications. Self-contained Naftiko capability covering one Citrix business surface.

Run with Naftiko CitrixApplications

What You Can Do

GET
Listapplications — Citrix List applications
/v1/applications
GET
Getapplication — Citrix Get an application
/v1/applications/{applicationid}

MCP Tools

citrix-list-applications

Citrix List applications

read-only idempotent
citrix-get-application

Citrix Get an application

read-only idempotent

Capability Spec

daas-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Citrix DaaS REST API — Applications
  description: 'Citrix DaaS REST API — Applications. 2 operations. Lead operation: Citrix List applications. Self-contained
    Naftiko capability covering one Citrix business surface.'
  tags:
  - Citrix
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CITRIX_API_KEY: CITRIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: daas-applications
    baseUri: https://api.cloud.com/cvad/manage
    description: Citrix DaaS REST API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: Applications
      path: /Applications
      operations:
      - name: listapplications
        method: GET
        description: Citrix List applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: Applications-applicationId
      path: /Applications/{applicationId}
      operations:
      - name: getapplication
        method: GET
        description: Citrix Get an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CITRIX_API_KEY}}'
  exposes:
  - type: rest
    namespace: daas-applications-rest
    port: 8080
    description: REST adapter for Citrix DaaS REST API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for Applications.
      operations:
      - method: GET
        name: listapplications
        description: Citrix List applications
        call: daas-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}
      name: applications-applicationid
      description: REST surface for Applications-applicationId.
      operations:
      - method: GET
        name: getapplication
        description: Citrix Get an application
        call: daas-applications.getapplication
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: daas-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Citrix DaaS REST API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: citrix-list-applications
      description: Citrix List applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: daas-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: citrix-get-application
      description: Citrix Get an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: daas-applications.getapplication
      outputParameters:
      - type: object
        mapping: $.