nber_macrohistory_list_series
Pack: nber-macrohistory · Endpoint: https://gateway.pipeworx.io/nber-macrohistory/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/nber_macrohistory_list_series for the schema, then POST the same URL with its arguments for the data.
List every NBER Macrohistory series id in one of the archive’s 16 subject categories (2-digit folder “01” through “16”) — use this to discover what series exist in a category before fetching one with nber_macrohistory_series. Returns the raw series ids only (no titles — the archive’s directory listing does not carry them; call nber_macrohistory_series on an id to see its title). Category 07/11/13/15/16 lean monthly (m-prefixed), most others are annual (a-prefixed).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
category | string | yes | Two-digit category folder, “01” through “16”. |
Example call
Arguments
{
"category": "13"
}
curl
curl -X POST https://gateway.pipeworx.io/nber-macrohistory/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nber_macrohistory_list_series","arguments":{"category":"13"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nber_macrohistory_list_series', {
"category": "13"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nber-macrohistory": {
"url": "https://gateway.pipeworx.io/nber-macrohistory/mcp"
}
}
}
See Getting Started for client-specific install steps.