get_data
Pack: bea-gov · Endpoint: https://gateway.pipeworx.io/bea-gov/mcp
Actual data (params per dataset).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes |
Example call
Arguments
{
"dataset": "NIPA",
"TableID": "T10101",
"SeriesID": "A191RA1Q225SBEA",
"frequency": "Q"
}
curl
curl -X POST https://gateway.pipeworx.io/bea-gov/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_data","arguments":{"dataset":"NIPA","TableID":"T10101","SeriesID":"A191RA1Q225SBEA","frequency":"Q"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_data', {
"dataset": "NIPA",
"TableID": "T10101",
"SeriesID": "A191RA1Q225SBEA",
"frequency": "Q"
});
Response shape
| Field | Type | Description |
|---|---|---|
BEAAPI | object | BEA API response wrapper |
Full JSON Schema
{
"type": "object",
"description": "Response from BEA API containing actual economic data",
"properties": {
"BEAAPI": {
"type": "object",
"description": "BEA API response wrapper"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bea-gov": {
"url": "https://gateway.pipeworx.io/bea-gov/mcp"
}
}
}
See Getting Started for client-specific install steps.