Conductor OSS · Capability

Conductor OSS REST API — Events

Conductor OSS REST API — Events. 2 operations. Lead operation: List event handlers. Self-contained Naftiko capability covering one Conductor OSS business surface.

Conductor OSS REST API — Events is a Naftiko capability published by Conductor OSS, one of 4 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET and POST methods rooted at /v1/event.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: List event handlers. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Conductor OSS and Events.

Run with Naftiko Conductor OSSEvents

What You Can Do

GET
Listeventhandlers — List event handlers
/v1/event
POST
Createeventhandler — Create event handler
/v1/event

MCP Tools

list-event-handlers

List event handlers

read-only idempotent
create-event-handler

Create event handler

Capability Spec

conductor-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Conductor OSS REST API — Events
  description: 'Conductor OSS REST API — Events. 2 operations. Lead operation: List event handlers. Self-contained Naftiko
    capability covering one Conductor OSS business surface.'
  tags:
  - Conductor OSS
  - Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CONDUCTOR_OSS_API_KEY: CONDUCTOR_OSS_API_KEY
capability:
  consumes:
  - type: http
    namespace: conductor-events
    baseUri: ''
    description: Conductor OSS REST API — Events business capability. Self-contained, no shared references.
    resources:
    - name: event
      path: /event
      operations:
      - name: listeventhandlers
        method: GET
        description: List event handlers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createeventhandler
        method: POST
        description: Create event handler
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: conductor-events-rest
    port: 8080
    description: REST adapter for Conductor OSS 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: listeventhandlers
        description: List event handlers
        call: conductor-events.listeventhandlers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventhandler
        description: Create event handler
        call: conductor-events.createeventhandler
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: conductor-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Conductor OSS REST API — Events. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-event-handlers
      description: List event handlers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conductor-events.listeventhandlers
      outputParameters:
      - type: object
        mapping: $.
    - name: create-event-handler
      description: Create event handler
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: conductor-events.createeventhandler
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.