nass_crop_progress
Pack: nass · Endpoint: https://gateway.pipeworx.io/nass/mcp
Get weekly crop progress reports with planting, emergence, blooming, harvest, and condition ratings (e.g., “GOOD”, “EXCELLENT”) by crop and state.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | NASS API key |
commodity | string | yes | Crop: “CORN”, “SOYBEANS”, “WHEAT”, “COTTON”, “SORGHUM” |
year | string | yes | Year, e.g., “2024” (required for progress data) |
state | string | no | State name (optional, defaults to national) |
Example call
Arguments
{
"_apiKey": "your-nass-api-key",
"commodity": "CORN",
"year": "2024",
"state": "IOWA"
}
curl
curl -X POST https://gateway.pipeworx.io/nass/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nass_crop_progress","arguments":{"_apiKey":"your-nass-api-key","commodity":"CORN","year":"2024","state":"IOWA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nass_crop_progress', {
"_apiKey": "your-nass-api-key",
"commodity": "CORN",
"year": "2024",
"state": "IOWA"
});
More examples
{
"_apiKey": "your-nass-api-key",
"commodity": "SOYBEANS",
"year": "2024"
}
Response shape
Always returns: count, data, truncated
| Field | Type | Description |
|---|---|---|
count | integer | Number of records returned |
data | array | Weekly crop progress and condition reports |
truncated | boolean | True if results exceed 200 records |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Number of records returned"
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"commodity": {
"type": [
"string",
"null"
],
"description": "Crop name"
},
"stat_category": {
"type": [
"string",
"null"
],
"description": "Progress stage (e.g., PLANTED, EMERGED, CONDITION)"
},
"state": {
"type": [
"string",
"null"
],
"description": "State name"
},
"county": {
"type": [
"string",
"null"
],
"description": "County name"
},
"agg_level": {
"type": [
"string",
"null"
],
"description": "Aggregation level"
},
"year": {
"type": [
"integer",
"null"
],
"description": "Year"
},
"frequency": {
"type": [
"string",
"null"
],
"description": "Always WEEKLY"
},
"period": {
"type": [
"string",
"null"
],
"description": "Week reference period"
},
"value": {
"type": [
"string",
"null"
],
"description": "Progress percentage or condition rating"
},
"unit": {
"type": [
"string",
"null"
],
"description": "Unit (e.g., PCT, rating category)"
},
"description": {
"type": [
"string",
"null"
],
"description": "Progress metric description"
}
}
},
"description": "Weekly crop progress and condition reports"
},
"truncated": {
"type": "boolean",
"description": "True if results exceed 200 records"
}
},
"required": [
"count",
"data",
"truncated"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nass": {
"url": "https://gateway.pipeworx.io/nass/mcp"
}
}
}
See Getting Started for client-specific install steps.