parameter_values
Pack: bea-gov · Endpoint: https://gateway.pipeworx.io/bea-gov/mcp
Valid values for a parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | |
parameter | string | yes |
Example call
Arguments
{
"dataset": "NIPA",
"parameter": "TableID"
}
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","arguments":{"dataset":"NIPA","parameter":"TableID"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('parameter_values', {
"dataset": "NIPA",
"parameter": "TableID"
});
Response shape
| Field | Type | Description |
|---|---|---|
BEAAPI | object | BEA API response wrapper |
Full JSON Schema
{
"type": "object",
"description": "Response from BEA API containing valid values for a parameter",
"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.