parameter_values_filtered

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

Filter-aware valid values.

Parameters

NameTypeRequiredDescription
datasetstringyes
target_parameterstringyes

Example call

Arguments

{
  "dataset": "NIPA",
  "target_parameter": "SeriesID",
  "TableID": "T10101"
}

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":"parameter_values_filtered","arguments":{"dataset":"NIPA","target_parameter":"SeriesID","TableID":"T10101"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('parameter_values_filtered', {
  "dataset": "NIPA",
  "target_parameter": "SeriesID",
  "TableID": "T10101"
});

Response shape

FieldTypeDescription
BEAAPIobjectBEA API response wrapper
Full JSON Schema
{
  "type": "object",
  "description": "Response from BEA API containing filter-aware parameter values",
  "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 July 9, 2026