nber_macrohistory_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_series for the schema, then POST the same URL with its arguments for the data.
One NBER Macrohistory series by its NBER id (e.g. “m13045”, “a01006”, “q04002”) — the National Bureau of Economic Research’s long-run archive of historical U.S. macroeconomic series (prices, money & banking, production, trade, employment, construction, agriculture, government finance…), most spanning the 1800s-1960s. Returns the series title, area covered, units, coverage dates and source notes (parsed from NBER’s own documentation for the series) plus every dated observation. m-prefixed ids are monthly, a-prefixed are annual, q-prefixed are quarterly. If you only have the bare digits (no letter), this tries monthly first, then annual, then quarterly. Source: NBER Macrohistory Database (nber.org), fetched live per request.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series_id | string | yes | NBER series id, e.g. “m13045” (with its letter prefix if known) or “13045” (bare digits — tries m/a/q in order). |
Example call
Arguments
{
"series_id": "m13045"
}
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_series","arguments":{"series_id":"m13045"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nber_macrohistory_series', {
"series_id": "m13045"
});
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.