Toro · Capability

Toro IntelliDash — Reports

Toro IntelliDash — Reports. 2 operations. Lead operation: Get Equipment Health Report. Self-contained Naftiko capability covering one Toro business surface.

Run with Naftiko ToroReports

What You Can Do

GET
Getequipmenthealthreport — Get Equipment Health Report
/v1/reports/equipment-health
GET
Getwaterusagereport — Get Water Usage Report
/v1/reports/water-usage

MCP Tools

get-equipment-health-report

Get Equipment Health Report

read-only idempotent
get-water-usage-report

Get Water Usage Report

read-only idempotent

Capability Spec

intellidash-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Toro IntelliDash — Reports
  description: 'Toro IntelliDash — Reports. 2 operations. Lead operation: Get Equipment Health Report. Self-contained Naftiko
    capability covering one Toro business surface.'
  tags:
  - Toro
  - Reports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TORO_API_KEY: TORO_API_KEY
capability:
  consumes:
  - type: http
    namespace: intellidash-reports
    baseUri: https://api.intellidash.toro.com/v1
    description: Toro IntelliDash — Reports business capability. Self-contained, no shared references.
    resources:
    - name: reports-equipment-health
      path: /reports/equipment-health
      operations:
      - name: getequipmenthealthreport
        method: GET
        description: Get Equipment Health Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: asOf
          in: query
          type: string
          description: Report date (defaults to today)
    - name: reports-water-usage
      path: /reports/water-usage
      operations:
      - name: getwaterusagereport
        method: GET
        description: Get Water Usage Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: startDate
          in: query
          type: string
          required: true
        - name: endDate
          in: query
          type: string
          required: true
        - name: groupBy
          in: query
          type: string
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TORO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: intellidash-reports-rest
    port: 8080
    description: REST adapter for Toro IntelliDash — Reports. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/reports/equipment-health
      name: reports-equipment-health
      description: REST surface for reports-equipment-health.
      operations:
      - method: GET
        name: getequipmenthealthreport
        description: Get Equipment Health Report
        call: intellidash-reports.getequipmenthealthreport
        with:
          asOf: rest.asOf
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reports/water-usage
      name: reports-water-usage
      description: REST surface for reports-water-usage.
      operations:
      - method: GET
        name: getwaterusagereport
        description: Get Water Usage Report
        call: intellidash-reports.getwaterusagereport
        with:
          startDate: rest.startDate
          endDate: rest.endDate
          groupBy: rest.groupBy
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: intellidash-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Toro IntelliDash — Reports. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-equipment-health-report
      description: Get Equipment Health Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intellidash-reports.getequipmenthealthreport
      with:
        asOf: tools.asOf
      outputParameters:
      - type: object
        mapping: $.
    - name: get-water-usage-report
      description: Get Water Usage Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intellidash-reports.getwaterusagereport
      with:
        startDate: tools.startDate
        endDate: tools.endDate
        groupBy: tools.groupBy
      outputParameters:
      - type: object
        mapping: $.