econ_calendar_upcoming
Pack: us-econ-calendar · Endpoint: https://gateway.pipeworx.io/us-econ-calendar/mcp
Upcoming US macro release SCHEDULE — which of CPI, PPI, the Employment Situation (jobs report), JOLTS, an FOMC meeting/rate decision, the weekly DOL jobless-claims report, and Treasury auctions fall in the next N hours or days, each with an explicit Eastern Time datetime and its official source (BLS/Fed/DOL/Treasury). Answers ‘what economic releases are coming up’, ‘what’s on the calendar this week’, ‘any Fed or jobs data in the next 48 hours’. Schedule only — does not return the released values; for those use the bls or fred packs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
hours | number | no | Look ahead this many hours from now. Takes priority over days if both are given. |
days | number | no | Look ahead this many days from today (default 7 if neither hours nor days is given). |
types | array | no | Restrict to these release types. Default: all of cpi, ppi, employment_situation, jolts, fomc, claims, treasury_auction. |
items | string | no |
Example call
Arguments
{
"hours": 72
}
curl
curl -X POST https://gateway.pipeworx.io/us-econ-calendar/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"econ_calendar_upcoming","arguments":{"hours":72}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('econ_calendar_upcoming', {
"hours": 72
});
More examples
{
"days": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"us-econ-calendar": {
"url": "https://gateway.pipeworx.io/us-econ-calendar/mcp"
}
}
}
See Getting Started for client-specific install steps.