Fas
live TradeDataFAS MCP — USDA Foreign Agricultural Service (trade & global production data)
Tools
fas_exports Get US agricultural export data by commodity and destination country. Uses USDA FAS GATS (Global Agricultural Trade System) data. Shows export volumes and values.
No parameters required.
Try it
fas_imports Get US agricultural import data by commodity and origin country. Shows import volumes and values from USDA FAS trade data.
No parameters required.
Try it
fas_production Get world production, supply, and distribution estimates for agricultural commodities from USDA FAS PSD (Production, Supply & Distribution) database. Covers global production, consumption, stocks, and
No parameters required.
Try it
fas_commodity_codes List available USDA FAS PSD commodity codes with names and categories. Use these codes with fas_production and other FAS tools. Supports filtering by category or keyword.
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.
curl -X POST https://gateway.pipeworx.io/fas/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/fas/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fas_exports","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fas_exports", {}); // Or ask in plain English:
const answer = await px.ask("fas mcp — usda foreign agricultural service (trade & global production data)"); Related packs
Other Pipeworx packs in the same categories (Trade, Data):