Broadcom · Capability

Broadcom Operations for Applications REST API — Dashboards

Broadcom Operations for Applications REST API — Dashboards. 5 operations. Lead operation: Broadcom List dashboards. Self-contained Naftiko capability covering one Broadcom business surface.

Run with Naftiko BroadcomDashboards

What You Can Do

GET
Listdashboards — Broadcom List dashboards
/v1/dashboard
POST
Createdashboard — Broadcom Create a dashboard
/v1/dashboard
GET
Getdashboard — Broadcom Get a dashboard
/v1/dashboard/{id}
PUT
Updatedashboard — Broadcom Update a dashboard
/v1/dashboard/{id}
DELETE
Deletedashboard — Broadcom Delete a dashboard
/v1/dashboard/{id}

MCP Tools

broadcom-list-dashboards

Broadcom List dashboards

read-only idempotent
broadcom-create-dashboard

Broadcom Create a dashboard

broadcom-get-dashboard

Broadcom Get a dashboard

read-only idempotent
broadcom-update-dashboard

Broadcom Update a dashboard

idempotent
broadcom-delete-dashboard

Broadcom Delete a dashboard

idempotent

Capability Spec

operations-for-applications-dashboards.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Broadcom Operations for Applications REST API — Dashboards
  description: 'Broadcom Operations for Applications REST API — Dashboards. 5 operations. Lead operation: Broadcom List dashboards.
    Self-contained Naftiko capability covering one Broadcom business surface.'
  tags:
  - Broadcom
  - Dashboards
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BROADCOM_API_KEY: BROADCOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: operations-for-applications-dashboards
    baseUri: https://{instance}.wavefront.com/api/v2
    description: Broadcom Operations for Applications REST API — Dashboards business capability. Self-contained, no shared
      references.
    resources:
    - name: dashboard
      path: /dashboard
      operations:
      - name: listdashboards
        method: GET
        description: Broadcom List dashboards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
      - name: createdashboard
        method: POST
        description: Broadcom Create a dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: dashboard-id
      path: /dashboard/{id}
      operations:
      - name: getdashboard
        method: GET
        description: Broadcom Get a dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: updatedashboard
        method: PUT
        description: Broadcom Update a dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedashboard
        method: DELETE
        description: Broadcom Delete a dashboard
        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: operations-for-applications-dashboards-rest
    port: 8080
    description: REST adapter for Broadcom Operations for Applications REST API — Dashboards. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/dashboard
      name: dashboard
      description: REST surface for dashboard.
      operations:
      - method: GET
        name: listdashboards
        description: Broadcom List dashboards
        call: operations-for-applications-dashboards.listdashboards
        with:
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdashboard
        description: Broadcom Create a dashboard
        call: operations-for-applications-dashboards.createdashboard
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/dashboard/{id}
      name: dashboard-id
      description: REST surface for dashboard-id.
      operations:
      - method: GET
        name: getdashboard
        description: Broadcom Get a dashboard
        call: operations-for-applications-dashboards.getdashboard
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedashboard
        description: Broadcom Update a dashboard
        call: operations-for-applications-dashboards.updatedashboard
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedashboard
        description: Broadcom Delete a dashboard
        call: operations-for-applications-dashboards.deletedashboard
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: operations-for-applications-dashboards-mcp
    port: 9090
    transport: http
    description: MCP adapter for Broadcom Operations for Applications REST API — Dashboards. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: broadcom-list-dashboards
      description: Broadcom List dashboards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: operations-for-applications-dashboards.listdashboards
      with:
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-create-dashboard
      description: Broadcom Create a dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: operations-for-applications-dashboards.createdashboard
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-get-dashboard
      description: Broadcom Get a dashboard
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: operations-for-applications-dashboards.getdashboard
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-update-dashboard
      description: Broadcom Update a dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: operations-for-applications-dashboards.updatedashboard
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-delete-dashboard
      description: Broadcom Delete a dashboard
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: operations-for-applications-dashboards.deletedashboard
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.