Trimble Agriculture · Capability

Trimble Agriculture Data API — Imagery

Trimble Agriculture Data API — Imagery. 2 operations. Lead operation: List Imagery. Self-contained Naftiko capability covering one Trimble Agriculture business surface.

Run with Naftiko Trimble AgricultureImagery

What You Can Do

GET
Listimagery — List Imagery
/v1/organizations/{organizationid}/imagery
POST
Uploadimagery — Upload Imagery
/v1/organizations/{organizationid}/imagery

MCP Tools

list-imagery

List Imagery

read-only idempotent
upload-imagery

Upload Imagery

Capability Spec

trimble-agriculture-imagery.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Trimble Agriculture Data API — Imagery
  description: 'Trimble Agriculture Data API — Imagery. 2 operations. Lead operation: List Imagery. Self-contained Naftiko
    capability covering one Trimble Agriculture business surface.'
  tags:
  - Trimble Agriculture
  - Imagery
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TRIMBLE_AGRICULTURE_API_KEY: TRIMBLE_AGRICULTURE_API_KEY
capability:
  consumes:
  - type: http
    namespace: trimble-agriculture-imagery
    baseUri: https://cloud.api.trimble.com/Trimble-Ag-Software/externalApi/3.0
    description: Trimble Agriculture Data API — Imagery business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organizationId-imagery
      path: /organizations/{organizationId}/imagery
      operations:
      - name: listimagery
        method: GET
        description: List Imagery
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: cropZoneId
          in: query
          type: string
      - name: uploadimagery
        method: POST
        description: Upload Imagery
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TRIMBLE_AGRICULTURE_API_KEY}}'
  exposes:
  - type: rest
    namespace: trimble-agriculture-imagery-rest
    port: 8080
    description: REST adapter for Trimble Agriculture Data API — Imagery. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/imagery
      name: organizations-organizationid-imagery
      description: REST surface for organizations-organizationId-imagery.
      operations:
      - method: GET
        name: listimagery
        description: List Imagery
        call: trimble-agriculture-imagery.listimagery
        with:
          organizationId: rest.organizationId
          cropZoneId: rest.cropZoneId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: uploadimagery
        description: Upload Imagery
        call: trimble-agriculture-imagery.uploadimagery
        with:
          organizationId: rest.organizationId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: trimble-agriculture-imagery-mcp
    port: 9090
    transport: http
    description: MCP adapter for Trimble Agriculture Data API — Imagery. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-imagery
      description: List Imagery
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: trimble-agriculture-imagery.listimagery
      with:
        organizationId: tools.organizationId
        cropZoneId: tools.cropZoneId
      outputParameters:
      - type: object
        mapping: $.
    - name: upload-imagery
      description: Upload Imagery
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: trimble-agriculture-imagery.uploadimagery
      with:
        organizationId: tools.organizationId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.