Broadcom · Capability

Broadcom Operations for Applications REST API — Events

Broadcom Operations for Applications REST API — Events. 2 operations. Lead operation: Broadcom List events. Self-contained Naftiko capability covering one Broadcom business surface.

Run with Naftiko BroadcomEvents

What You Can Do

GET
Listevents — Broadcom List events
/v1/event
POST
Createevent — Broadcom Create an event
/v1/event

MCP Tools

broadcom-list-events

Broadcom List events

read-only idempotent
broadcom-create-event

Broadcom Create an event

Capability Spec

operations-for-applications-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Broadcom Operations for Applications REST API — Events
  description: 'Broadcom Operations for Applications REST API — Events. 2 operations. Lead operation: Broadcom List events.
    Self-contained Naftiko capability covering one Broadcom business surface.'
  tags:
  - Broadcom
  - Events
  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-events
    baseUri: https://{instance}.wavefront.com/api/v2
    description: Broadcom Operations for Applications REST API — Events business capability. Self-contained, no shared references.
    resources:
    - name: event
      path: /event
      operations:
      - name: listevents
        method: GET
        description: Broadcom List events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: earliestStartTimeEpochMillis
          in: query
          type: integer
        - name: latestStartTimeEpochMillis
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
      - name: createevent
        method: POST
        description: Broadcom Create an event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.BROADCOM_API_KEY}}'
  exposes:
  - type: rest
    namespace: operations-for-applications-events-rest
    port: 8080
    description: REST adapter for Broadcom Operations for Applications REST API — Events. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/event
      name: event
      description: REST surface for event.
      operations:
      - method: GET
        name: listevents
        description: Broadcom List events
        call: operations-for-applications-events.listevents
        with:
          earliestStartTimeEpochMillis: rest.earliestStartTimeEpochMillis
          latestStartTimeEpochMillis: rest.latestStartTimeEpochMillis
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createevent
        description: Broadcom Create an event
        call: operations-for-applications-events.createevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: operations-for-applications-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Broadcom Operations for Applications REST API — Events. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: broadcom-list-events
      description: Broadcom List events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: operations-for-applications-events.listevents
      with:
        earliestStartTimeEpochMillis: tools.earliestStartTimeEpochMillis
        latestStartTimeEpochMillis: tools.latestStartTimeEpochMillis
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: broadcom-create-event
      description: Broadcom Create an event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: operations-for-applications-events.createevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.