Holidays

live Calendar

Public holidays for 100+ countries — check dates, upcoming holidays, and today

3 tools
0ms auth
free tier 50 calls/day

Tools

get_holidays required: country_code, year

Get public holidays for a country and year

Parameters
Name Type Description
country_code req string ISO 3166-1 alpha-2 code (e.g., US, GB, DE)
year req number Year (e.g., 2026)
Try it
is_today_holiday required: country_code

Check if today is a public holiday in a country

Parameters
Name Type Description
country_code req string ISO 3166-1 alpha-2 code
Try it
next_holidays required: country_code

Get upcoming public holidays for a country

Parameters
Name Type Description
country_code req string ISO 3166-1 alpha-2 code
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/holidays/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/holidays/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_holidays","arguments":{"country_code": "US", "year": 2025}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_holidays", {"country_code":"example","year":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("public holidays for 100+ countries — check dates, upcoming holidays, and today");