Broadcom · Capability

Broadcom Operations for Applications REST API — Alerts

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

Run with Naftiko BroadcomAlerts

What You Can Do

GET
Listalerts — Broadcom List alerts
/v1/alert
POST
Createalert — Broadcom Create an alert
/v1/alert
GET
Getalert — Broadcom Get an alert
/v1/alert/{id}
PUT
Updatealert — Broadcom Update an alert
/v1/alert/{id}
DELETE
Deletealert — Broadcom Delete an alert
/v1/alert/{id}

MCP Tools

broadcom-list-alerts

Broadcom List alerts

read-only idempotent
broadcom-create-alert

Broadcom Create an alert

broadcom-get-alert

Broadcom Get an alert

read-only idempotent
broadcom-update-alert

Broadcom Update an alert

idempotent
broadcom-delete-alert

Broadcom Delete an alert

idempotent

Capability Spec

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