ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-holidays

Public holidays for 100+ countries — look up by year, check if today is a holiday, or find the next upcoming ones

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-holidays
Or

Public Holidays

Get official public holidays for over 100 countries via the Nager.Date API. Look up all holidays in a year, check if today is a holiday, or find the next upcoming holidays for a country.

Tools

ToolDescription
get_holidaysAll public holidays for a country and year (e.g., US 2025)
is_today_holidayCheck if today is a public holiday in a given country
next_holidaysUpcoming public holidays for a country from today forward

When to use

  • Scheduling features that need to account for public holidays
  • "Is Monday a bank holiday in the UK?" — check with is_today_holiday
  • Travel planning — see what holidays fall during a trip
  • Payroll and HR tools that need country-specific holiday calendars

Example: German holidays in 2025

curl -s -X POST https://gateway.pipeworx.io/holidays/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_holidays","arguments":{"country":"DE","year":2025}}}'

Returns date, name (English), local name (German), and whether it's a fixed or floating holiday.

Setup

{
  "mcpServers": {
    "pipeworx-holidays": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/holidays/mcp"]
    }
  }
}

Metadata

Stars4190
Views0
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-holidays": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.