This server connects Claude to the USDA's National Agricultural Statistics Service Quick Stats database, letting you query U.S. crop production, livestock inventory, prices, and farm economics data. It's part of the Pipeworx gateway, which routes requests to 673+ data sources and includes an ask_pipeworx tool that translates plain English questions into the right API calls automatically. Useful when you need historical or current ag data for market analysis, research, or building tools around farm economics. The streamable HTTP transport means no local installation. You can connect to just the NASS endpoint or use the full Pipeworx gateway for access to everything at once.
NASS MCP — USDA National Agricultural Statistics Service (Quick Stats)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nass": {
"url": "https://gateway.pipeworx.io/nass/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nass data" })
The gateway picks the right tool and fills the arguments automatically.
MIT