Holidays

live Calendar

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

3 tools
0ms auth
free forever

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)
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
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

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": "example", "year": 0}}}'