QuantCDN · Capability

QuantCDN API — Organizations

QuantCDN API — Organizations. 2 operations. Lead operation: Retrieve all organizations. Self-contained Naftiko capability covering one Quantcdn business surface.

Run with Naftiko QuantcdnOrganizations

What You Can Do

GET
Organizationslist — Retrieve all organizations
/v1/api/v2/organizations
GET
Organizationsread — Get details of a single organization
/v1/api/v2/organizations/{organization}

MCP Tools

retrieve-all-organizations

Retrieve all organizations

read-only idempotent
get-details-single-organization

Get details of a single organization

read-only idempotent

Capability Spec

quantcdn-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: QuantCDN API — Organizations
  description: 'QuantCDN API — Organizations. 2 operations. Lead operation: Retrieve all organizations. Self-contained Naftiko
    capability covering one Quantcdn business surface.'
  tags:
  - Quantcdn
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QUANTCDN_API_KEY: QUANTCDN_API_KEY
capability:
  consumes:
  - type: http
    namespace: quantcdn-organizations
    baseUri: https://dashboard.quantcdn.io
    description: QuantCDN API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-organizations
      path: /api/v2/organizations
      operations:
      - name: organizationslist
        method: GET
        description: Retrieve all organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v2-organizations-organization
      path: /api/v2/organizations/{organization}
      operations:
      - name: organizationsread
        method: GET
        description: Get details of a single organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          description: Organization identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.QUANTCDN_API_KEY}}'
  exposes:
  - type: rest
    namespace: quantcdn-organizations-rest
    port: 8080
    description: REST adapter for QuantCDN API — Organizations. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v2/organizations
      name: api-v2-organizations
      description: REST surface for api-v2-organizations.
      operations:
      - method: GET
        name: organizationslist
        description: Retrieve all organizations
        call: quantcdn-organizations.organizationslist
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/organizations/{organization}
      name: api-v2-organizations-organization
      description: REST surface for api-v2-organizations-organization.
      operations:
      - method: GET
        name: organizationsread
        description: Get details of a single organization
        call: quantcdn-organizations.organizationsread
        with:
          organization: rest.organization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: quantcdn-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for QuantCDN API — Organizations. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: retrieve-all-organizations
      description: Retrieve all organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quantcdn-organizations.organizationslist
      outputParameters:
      - type: object
        mapping: $.
    - name: get-details-single-organization
      description: Get details of a single organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quantcdn-organizations.organizationsread
      with:
        organization: tools.organization
      outputParameters:
      - type: object
        mapping: $.