Bea Gov
live EconomicsGovernmentBEA (Bureau of Economic Analysis) — query US GDP, national accounts, regional income, and international trade datasets from the official BEA API.
Tools
dataset_list List all available BEA datasets (e.g. NIPA, Regional, MNE, FixedAssets, ITA, IIP); returns dataset names and descriptions to identify which dataset to query.
No parameters required.
Try it
parameter_list List all required and optional parameters for a specific BEA dataset (e.g. "NIPA"); returns parameter names, descriptions, data types, and whether they are required.
No parameters required.
Try it
parameter_values Valid values for a parameter.
No parameters required.
Try it
parameter_values_filtered Filter-aware valid values.
No parameters required.
Try it
outdoor_recreation_economy MARKET SIZE for outdoor recreation activities in US dollars, by activity and state — BEA's Outdoor Recreation Satellite Account (official government statistics, not analyst estimates). Use for "how bi
No parameters required.
Try it
get_data Fetch actual BEA economic data from the specified dataset (e.g. NIPA) using dataset-specific parameters; returns time series values such as GDP, PCE, regional income, and GDP by industry — including t
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/bea-gov/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/bea-gov/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"dataset_list","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("dataset_list", {}); // Or ask in plain English:
const answer = await px.ask("bea (bureau of economic analysis) — query us gdp, national accounts, regional income, and international trade datasets from the official bea api");