Toro · Capability

Toro IntelliDash — Equipment

Toro IntelliDash — Equipment. 3 operations. Lead operation: List Fleet Equipment. Self-contained Naftiko capability covering one Toro business surface.

Run with Naftiko ToroEquipment

What You Can Do

GET
Listfleetequipment — List Fleet Equipment
/v1/equipment
GET
Getfleetequipment — Get Fleet Equipment
/v1/equipment/{equipmentid}
GET
Getequipmentlocation — Get Equipment Location
/v1/equipment/{equipmentid}/location

MCP Tools

list-fleet-equipment

List Fleet Equipment

read-only idempotent
get-fleet-equipment

Get Fleet Equipment

read-only idempotent
get-equipment-location

Get Equipment Location

read-only idempotent

Capability Spec

intellidash-equipment.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Toro IntelliDash — Equipment
  description: 'Toro IntelliDash — Equipment. 3 operations. Lead operation: List Fleet Equipment. Self-contained Naftiko capability
    covering one Toro business surface.'
  tags:
  - Toro
  - Equipment
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TORO_API_KEY: TORO_API_KEY
capability:
  consumes:
  - type: http
    namespace: intellidash-equipment
    baseUri: https://api.intellidash.toro.com/v1
    description: Toro IntelliDash — Equipment business capability. Self-contained, no shared references.
    resources:
    - name: equipment
      path: /equipment
      operations:
      - name: listfleetequipment
        method: GET
        description: List Fleet Equipment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
        - name: type
          in: query
          type: string
          description: Filter by equipment type (mower, utility, irrigation, etc.)
    - name: equipment-equipmentId
      path: /equipment/{equipmentId}
      operations:
      - name: getfleetequipment
        method: GET
        description: Get Fleet Equipment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: equipmentId
          in: path
          type: string
          required: true
    - name: equipment-equipmentId-location
      path: /equipment/{equipmentId}/location
      operations:
      - name: getequipmentlocation
        method: GET
        description: Get Equipment Location
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: equipmentId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TORO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: intellidash-equipment-rest
    port: 8080
    description: REST adapter for Toro IntelliDash — Equipment. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/equipment
      name: equipment
      description: REST surface for equipment.
      operations:
      - method: GET
        name: listfleetequipment
        description: List Fleet Equipment
        call: intellidash-equipment.listfleetequipment
        with:
          status: rest.status
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/equipment/{equipmentid}
      name: equipment-equipmentid
      description: REST surface for equipment-equipmentId.
      operations:
      - method: GET
        name: getfleetequipment
        description: Get Fleet Equipment
        call: intellidash-equipment.getfleetequipment
        with:
          equipmentId: rest.equipmentId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/equipment/{equipmentid}/location
      name: equipment-equipmentid-location
      description: REST surface for equipment-equipmentId-location.
      operations:
      - method: GET
        name: getequipmentlocation
        description: Get Equipment Location
        call: intellidash-equipment.getequipmentlocation
        with:
          equipmentId: rest.equipmentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: intellidash-equipment-mcp
    port: 9090
    transport: http
    description: MCP adapter for Toro IntelliDash — Equipment. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-fleet-equipment
      description: List Fleet Equipment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intellidash-equipment.listfleetequipment
      with:
        status: tools.status
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: get-fleet-equipment
      description: Get Fleet Equipment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intellidash-equipment.getfleetequipment
      with:
        equipmentId: tools.equipmentId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-equipment-location
      description: Get Equipment Location
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: intellidash-equipment.getequipmentlocation
      with:
        equipmentId: tools.equipmentId
      outputParameters:
      - type: object
        mapping: $.