Tray.io · Capability

Tray.io Platform API — Triggers

Tray.io Platform API — Triggers. 3 operations. Lead operation: Create Subscription. Self-contained Naftiko capability covering one Tray Io business surface.

Run with Naftiko Tray IoTriggers

What You Can Do

POST
Createsubscription — Create Subscription
/v1/subscriptions
DELETE
Deletesubscription — Delete Subscription
/v1/subscriptions/{subscriptionid}
GET
Listtriggers — List Triggers
/v1/triggers

MCP Tools

create-subscription

Create Subscription

delete-subscription

Delete Subscription

idempotent
list-triggers

List Triggers

read-only idempotent

Capability Spec

platform-triggers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tray.io Platform API — Triggers
  description: 'Tray.io Platform API — Triggers. 3 operations. Lead operation: Create Subscription. Self-contained Naftiko
    capability covering one Tray Io business surface.'
  tags:
  - Tray Io
  - Triggers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TRAY_IO_API_KEY: TRAY_IO_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-triggers
    baseUri: https://api.tray.io/core/v1
    description: Tray.io Platform API — Triggers business capability. Self-contained, no shared references.
    resources:
    - name: subscriptions
      path: /subscriptions
      operations:
      - name: createsubscription
        method: POST
        description: Create Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: subscriptions-subscriptionId
      path: /subscriptions/{subscriptionId}
      operations:
      - name: deletesubscription
        method: DELETE
        description: Delete Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: subscriptionId
          in: path
          type: string
          description: The unique identifier for the subscription
          required: true
    - name: triggers
      path: /triggers
      operations:
      - name: listtriggers
        method: GET
        description: List Triggers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TRAY_IO_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-triggers-rest
    port: 8080
    description: REST adapter for Tray.io Platform API — Triggers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/subscriptions
      name: subscriptions
      description: REST surface for subscriptions.
      operations:
      - method: POST
        name: createsubscription
        description: Create Subscription
        call: platform-triggers.createsubscription
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/subscriptions/{subscriptionid}
      name: subscriptions-subscriptionid
      description: REST surface for subscriptions-subscriptionId.
      operations:
      - method: DELETE
        name: deletesubscription
        description: Delete Subscription
        call: platform-triggers.deletesubscription
        with:
          subscriptionId: rest.subscriptionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/triggers
      name: triggers
      description: REST surface for triggers.
      operations:
      - method: GET
        name: listtriggers
        description: List Triggers
        call: platform-triggers.listtriggers
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-triggers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tray.io Platform API — Triggers. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-subscription
      description: Create Subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-triggers.createsubscription
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-subscription
      description: Delete Subscription
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-triggers.deletesubscription
      with:
        subscriptionId: tools.subscriptionId
      outputParameters:
      - type: object
        mapping: $.
    - name: list-triggers
      description: List Triggers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-triggers.listtriggers
      outputParameters:
      - type: object
        mapping: $.