get_data

Pack: bea-gov · Endpoint: https://gateway.pipeworx.io/bea-gov/mcp

Actual data (params per dataset).

Parameters

NameTypeRequiredDescription
datasetstringyes

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

FieldTypeDescription
BEAAPIobjectBEA 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.

Regenerated from source · build June 12, 2026