Nass

live Utility

NASS MCP — USDA National Agricultural Statistics Service (Quick Stats)

5 tools
0ms auth
free tier 50 calls/day

Tools

nass_query

Query USDA NASS Quick Stats — the most comprehensive source of US agricultural statistics. Supports flexible filtering by commodity, statistic category, geography, year, and more. Returns production,

No parameters required.

Try it
nass_crop_production

Get US crop production data — a shortcut for querying NASS survey data on crop yields, production totals, and planted/harvested acreage. Pre-filtered to source=SURVEY, sector=CROPS.

No parameters required.

Try it
nass_prices

Get prices received by US farmers for crops and livestock. Pre-filtered to source=SURVEY, stat_category=PRICE RECEIVED.

No parameters required.

Try it
nass_livestock

Get US livestock data — inventory counts, slaughter numbers, and production. Pre-filtered to sector=ANIMALS & PRODUCTS.

No parameters required.

Try it
nass_crop_progress

Get weekly crop progress and condition reports — planting progress, emergence, blooming, harvest completion, and crop condition ratings (good/excellent/poor). Pre-filtered to source=SURVEY, freq=WEEKL

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/nass/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/nass/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nass_query","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nass_query", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("nass mcp — usda national agricultural statistics service (quick stats)");