FieldMCP
PricingDocsChangelog
Sign inGet Started
FieldMCP

Connect your AI to farm data in minutes

Product

  • Pricing
  • Documentation
  • Changelog
  • Integrations

Company

  • About
  • Customers
  • Security
  • Contact
  • Support

Legal

  • Terms of Service
  • Privacy Policy
  • DPA
  • SLA

© 2026 FieldMCP. All rights reserved.

Status

Search Documentation

Search for a documentation page...

Getting Started

IntroductionQuickstart

Authentication

API KeysOAuth

Tools Reference

Overview
List ResourcesGet Field OverviewGet Equipment StatusSearch Operations
  1. Docs
  2. John Deere
  3. Search Operations

deere_search_operations

Search field operations across an organization or for a specific field. Returns crop, dates, area, and type-specific details for planting, harvest, application, and tillage operations.

Parameters

ParameterTypeRequiredDefaultDescription
orgIdstringYes—Organization ID
fieldIdstringNo—Filter to a specific field
operationTypeenumNoallplanting, harvest, application, tillage, or all
dateRangeobjectNo—{ startDate, endDate } in YYYY-MM-DD format
limitnumberNo50Results per page (1-100)
offsetnumberNo0Pagination offset

Usage

All Operations for a Field

{
  "orgId": "123",
  "fieldId": "abc"
}

Harvest Data for a Season

{
  "orgId": "123",
  "operationType": "harvest",
  "dateRange": {
    "startDate": "2025-09-01",
    "endDate": "2025-12-31"
  }
}

Response

{
  "error": false,
  "data": {
    "operations": [
      {
        "id": "op-uuid",
        "fieldId": "abc",
        "date": "2025-10-15",
        "operationType": "harvest",
        "crop": "corn",
        "area": 40.5,
        "yieldPerAcre": 185.3,
        "moisture": 15.2,
        "totalYield": 7504.65
      },
      {
        "id": "op-uuid-2",
        "fieldId": "abc",
        "date": "2025-04-20",
        "operationType": "planting",
        "crop": "corn",
        "area": 40.5,
        "variety": "DKC62-08",
        "seedingRate": 34000,
        "population": 34000
      }
    ],
    "pagination": {
      "total": 2,
      "offset": 0,
      "limit": 50,
      "hasMore": false
    }
  }
}

Operation-Specific Fields

Planting

FieldDescription
varietySeed variety
seedingRateSeeds per acre
populationPlant population

Harvest

FieldDescription
yieldPerAcreBushels per acre
moistureGrain moisture percentage
totalYieldTotal bushels

Application

FieldDescription
productProduct name
productTypefertilizer, herbicide, insecticide, fungicide, other
ratePerAcreApplication rate
rateUnitRate unit (e.g., lbs, gal)

Tillage

FieldDescription
implementTillage implement used
depthTillage depth

Notes

When searching across all fields in an organization (no fieldId), the tool queries up to 20 fields to avoid provider API limits. For large organizations, filter by fieldId for best results.

Errors

CodeCause
ORG_NOT_FOUNDOrganization doesn't exist
NO_DATA_FOR_PERIODNo operations found in date range
TOKEN_EXPIREDJohn Deere token expired
PROVIDER_TIMEOUTTry a shorter date range
ParameterTypeRequiredDescription
orgIdstringRequiredOrganization ID
fieldIdstringOptional
operationTypeplanting | harvest | application | tillage | allOptional
dateRangeobjectOptional
limitnumberOptional
offsetnumberOptional

Try it

deere_search_operations

Sign in to try this tool

Sign in
Get Equipment StatusDiagnose Field