Broadcom · Capability

Broadcom VMware Cloud Foundation API — Tasks

Broadcom VMware Cloud Foundation API — Tasks. 2 operations. Lead operation: Broadcom List tasks. Self-contained Naftiko capability covering one Broadcom business surface.

Run with Naftiko BroadcomTasks

What You Can Do

GET
Listtasks — Broadcom List tasks
/v1/tasks
GET
Gettask — Broadcom Get task details
/v1/tasks/{id}

MCP Tools

broadcom-list-tasks

Broadcom List tasks

read-only idempotent
broadcom-get-task-details

Broadcom Get task details

read-only idempotent

Capability Spec

vmware-cloud-foundation-tasks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Broadcom VMware Cloud Foundation API — Tasks
  description: 'Broadcom VMware Cloud Foundation API — Tasks. 2 operations. Lead operation: Broadcom List tasks. Self-contained
    Naftiko capability covering one Broadcom business surface.'
  tags:
  - Broadcom
  - Tasks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BROADCOM_API_KEY: BROADCOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: vmware-cloud-foundation-tasks
    baseUri: https://{sddc-manager}/v1
    description: Broadcom VMware Cloud Foundation API — Tasks business capability. Self-contained, no shared references.
    resources:
    - name: tasks
      path: /tasks
      operations:
      - name: listtasks
        method: GET
        description: Broadcom List tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
    - name: tasks-id
      path: /tasks/{id}
      operations:
      - name: gettask
        method: GET
        description: Broadcom Get task details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.BROADCOM_API_KEY}}'
  exposes:
  - type: rest
    namespace: vmware-cloud-foundation-tasks-rest
    port: 8080
    description: REST adapter for Broadcom VMware Cloud Foundation API — Tasks. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/tasks
      name: tasks
      description: REST surface for tasks.
      operations:
      - method: GET
        name: listtasks
        description: Broadcom List tasks
        call: vmware-cloud-foundation-tasks.listtasks
        with:
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tasks/{id}
      name: tasks-id
      description: REST surface for tasks-id.
      operations:
      - method: GET
        name: gettask
        description: Broadcom Get task details
        call: vmware-cloud-foundation-tasks.gettask
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vmware-cloud-foundation-tasks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Broadcom VMware Cloud Foundation API — Tasks. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: broadcom-list-tasks
      description: Broadcom List tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vmware-cloud-foundation-tasks.listtasks
      with:
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-get-task-details
      description: Broadcom Get task details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vmware-cloud-foundation-tasks.gettask
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.