Super Micro Computer · Capability

Supermicro Redfish API — Event Service

Supermicro Redfish API — Event Service. 5 operations. Lead operation: Get Event Service. Self-contained Naftiko capability covering one Super Micro Computer business surface.

Run with Naftiko Super Micro ComputerEvent Service

What You Can Do

GET
Geteventservice — Get Event Service
/v1/eventservice
GET
Listeventsubscriptions — List Event Subscriptions
/v1/eventservice/subscriptions
POST
Createeventsubscription — Create Event Subscription
/v1/eventservice/subscriptions
GET
Geteventsubscription — Get Event Subscription
/v1/eventservice/subscriptions/{subscriptionid}
DELETE
Deleteeventsubscription — Delete Event Subscription
/v1/eventservice/subscriptions/{subscriptionid}

MCP Tools

get-event-service

Get Event Service

read-only idempotent
list-event-subscriptions

List Event Subscriptions

read-only idempotent
create-event-subscription

Create Event Subscription

get-event-subscription

Get Event Subscription

read-only idempotent
delete-event-subscription

Delete Event Subscription

idempotent

Capability Spec

supermicro-redfish-event-service.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Supermicro Redfish API — Event Service
  description: 'Supermicro Redfish API — Event Service. 5 operations. Lead operation: Get Event Service. Self-contained Naftiko
    capability covering one Super Micro Computer business surface.'
  tags:
  - Super Micro Computer
  - Event Service
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUPER_MICRO_COMPUTER_API_KEY: SUPER_MICRO_COMPUTER_API_KEY
capability:
  consumes:
  - type: http
    namespace: supermicro-redfish-event-service
    baseUri: https://{bmc-ip}/redfish/v1
    description: Supermicro Redfish API — Event Service business capability. Self-contained, no shared references.
    resources:
    - name: EventService
      path: /EventService
      operations:
      - name: geteventservice
        method: GET
        description: Get Event Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: EventService-Subscriptions
      path: /EventService/Subscriptions
      operations:
      - name: listeventsubscriptions
        method: GET
        description: List Event Subscriptions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createeventsubscription
        method: POST
        description: Create Event Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: EventService-Subscriptions-subscriptionId
      path: /EventService/Subscriptions/{subscriptionId}
      operations:
      - name: geteventsubscription
        method: GET
        description: Get Event Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: subscriptionId
          in: path
          type: string
          required: true
      - name: deleteeventsubscription
        method: DELETE
        description: Delete Event Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: subscriptionId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.SUPER_MICRO_COMPUTER_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: supermicro-redfish-event-service-rest
    port: 8080
    description: REST adapter for Supermicro Redfish API — Event Service. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/eventservice
      name: eventservice
      description: REST surface for EventService.
      operations:
      - method: GET
        name: geteventservice
        description: Get Event Service
        call: supermicro-redfish-event-service.geteventservice
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/eventservice/subscriptions
      name: eventservice-subscriptions
      description: REST surface for EventService-Subscriptions.
      operations:
      - method: GET
        name: listeventsubscriptions
        description: List Event Subscriptions
        call: supermicro-redfish-event-service.listeventsubscriptions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventsubscription
        description: Create Event Subscription
        call: supermicro-redfish-event-service.createeventsubscription
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/eventservice/subscriptions/{subscriptionid}
      name: eventservice-subscriptions-subscriptionid
      description: REST surface for EventService-Subscriptions-subscriptionId.
      operations:
      - method: GET
        name: geteventsubscription
        description: Get Event Subscription
        call: supermicro-redfish-event-service.geteventsubscription
        with:
          subscriptionId: rest.subscriptionId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventsubscription
        description: Delete Event Subscription
        call: supermicro-redfish-event-service.deleteeventsubscription
        with:
          subscriptionId: rest.subscriptionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: supermicro-redfish-event-service-mcp
    port: 9090
    transport: http
    description: MCP adapter for Supermicro Redfish API — Event Service. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-event-service
      description: Get Event Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: supermicro-redfish-event-service.geteventservice
      outputParameters:
      - type: object
        mapping: $.
    - name: list-event-subscriptions
      description: List Event Subscriptions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: supermicro-redfish-event-service.listeventsubscriptions
      outputParameters:
      - type: object
        mapping: $.
    - name: create-event-subscription
      description: Create Event Subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: supermicro-redfish-event-service.createeventsubscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event-subscription
      description: Get Event Subscription
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: supermicro-redfish-event-service.geteventsubscription
      with:
        subscriptionId: tools.subscriptionId
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-event-subscription
      description: Delete Event Subscription
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: supermicro-redfish-event-service.deleteeventsubscription
      with:
        subscriptionId: tools.subscriptionId
      outputParameters:
      - type: object
        mapping: $.