Zeebe · Capability

Zeebe REST API — Signals

Zeebe REST API — Signals. 1 operations. Lead operation: Zeebe Broadcast a Signal. Self-contained Naftiko capability covering one Zeebe business surface.

Run with Naftiko ZeebeSignals

What You Can Do

POST
Broadcastsignal — Zeebe Broadcast a Signal
/v1/signals/broadcast

MCP Tools

zeebe-broadcast-signal

Zeebe Broadcast a Signal

Capability Spec

zeebe-signals.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zeebe REST API — Signals
  description: 'Zeebe REST API — Signals. 1 operations. Lead operation: Zeebe Broadcast a Signal. Self-contained Naftiko capability
    covering one Zeebe business surface.'
  tags:
  - Zeebe
  - Signals
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZEEBE_API_KEY: ZEEBE_API_KEY
capability:
  consumes:
  - type: http
    namespace: zeebe-signals
    baseUri: ''
    description: Zeebe REST API — Signals business capability. Self-contained, no shared references.
    resources:
    - name: signals-broadcast
      path: /signals/broadcast
      operations:
      - name: broadcastsignal
        method: POST
        description: Zeebe Broadcast a Signal
        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.ZEEBE_API_KEY}}'
  exposes:
  - type: rest
    namespace: zeebe-signals-rest
    port: 8080
    description: REST adapter for Zeebe REST API — Signals. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/signals/broadcast
      name: signals-broadcast
      description: REST surface for signals-broadcast.
      operations:
      - method: POST
        name: broadcastsignal
        description: Zeebe Broadcast a Signal
        call: zeebe-signals.broadcastsignal
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: zeebe-signals-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zeebe REST API — Signals. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: zeebe-broadcast-signal
      description: Zeebe Broadcast a Signal
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: zeebe-signals.broadcastsignal
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.