econ_calendar_next
Pack: us-econ-calendar · Endpoint: https://gateway.pipeworx.io/us-econ-calendar/mcp
When the NEXT occurrence of a specific US macro release is — next CPI, next PPI, next jobs report, next JOLTS, next FOMC meeting, next weekly jobless-claims report, or next Treasury auction — with its exact Eastern Time datetime and official source. Answers ‘when is the next CPI report’, ‘when is the next FOMC meeting’, ‘when do jobless claims come out next’. Schedule only, not the value that will be reported.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
release | string | yes | Which release to look up. |
from | string | no | ISO date (YYYY-MM-DD) to search from. Default: today. |
Example call
Arguments
{
"release": "cpi"
}
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_next","arguments":{"release":"cpi"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('econ_calendar_next', {
"release": "cpi"
});
More examples
{
"release": "fomc"
}
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.