Broadcom · Capability

Broadcom VMware Cloud Foundation API — Hosts

Broadcom VMware Cloud Foundation API — Hosts. 3 operations. Lead operation: Broadcom List hosts. Self-contained Naftiko capability covering one Broadcom business surface.

Run with Naftiko BroadcomHosts

What You Can Do

GET
Listhosts — Broadcom List hosts
/v1/hosts
POST
Commissionhosts — Broadcom Commission hosts
/v1/hosts
GET
Gethost — Broadcom Get host details
/v1/hosts/{id}

MCP Tools

broadcom-list-hosts

Broadcom List hosts

read-only idempotent
broadcom-commission-hosts

Broadcom Commission hosts

broadcom-get-host-details

Broadcom Get host details

read-only idempotent

Capability Spec

vmware-cloud-foundation-hosts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Broadcom VMware Cloud Foundation API — Hosts
  description: 'Broadcom VMware Cloud Foundation API — Hosts. 3 operations. Lead operation: Broadcom List hosts. Self-contained
    Naftiko capability covering one Broadcom business surface.'
  tags:
  - Broadcom
  - Hosts
  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-hosts
    baseUri: https://{sddc-manager}/v1
    description: Broadcom VMware Cloud Foundation API — Hosts business capability. Self-contained, no shared references.
    resources:
    - name: hosts
      path: /hosts
      operations:
      - name: listhosts
        method: GET
        description: Broadcom List hosts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: commissionhosts
        method: POST
        description: Broadcom Commission hosts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: hosts-id
      path: /hosts/{id}
      operations:
      - name: gethost
        method: GET
        description: Broadcom Get host 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-hosts-rest
    port: 8080
    description: REST adapter for Broadcom VMware Cloud Foundation API — Hosts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/hosts
      name: hosts
      description: REST surface for hosts.
      operations:
      - method: GET
        name: listhosts
        description: Broadcom List hosts
        call: vmware-cloud-foundation-hosts.listhosts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: commissionhosts
        description: Broadcom Commission hosts
        call: vmware-cloud-foundation-hosts.commissionhosts
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/hosts/{id}
      name: hosts-id
      description: REST surface for hosts-id.
      operations:
      - method: GET
        name: gethost
        description: Broadcom Get host details
        call: vmware-cloud-foundation-hosts.gethost
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vmware-cloud-foundation-hosts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Broadcom VMware Cloud Foundation API — Hosts. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: broadcom-list-hosts
      description: Broadcom List hosts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vmware-cloud-foundation-hosts.listhosts
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-commission-hosts
      description: Broadcom Commission hosts
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vmware-cloud-foundation-hosts.commissionhosts
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-get-host-details
      description: Broadcom Get host details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vmware-cloud-foundation-hosts.gethost
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.