Connects to the Nager.Date API for querying public holidays across countries. Part of the Pipeworx gateway ecosystem, which routes requests to 850+ data sources. The server exposes holiday lookup tools, though the specific operations aren't detailed in the source. You can either call tools directly through the standard MCP interface or use the ask_pipeworx wrapper to query holiday data in plain English. Useful when you need to factor public holidays into scheduling, availability checks, or localization work. Runs as a hosted service at gateway.pipeworx.io, so no local setup required.
Nager.Date Public Holidays MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 850+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"nager-holidays": {
"url": "https://gateway.pipeworx.io/nager-holidays/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 850+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Nager Holidays data" })
The gateway picks the right tool and fills the arguments automatically.
MIT