Public Holidays
Published via Invokera
Official public holidays for a given country and year, useful for agents doing scheduling, payroll or travel planning. Public holidays for 100+ countries via the open Nager.Date API. Curated by Invokera.
Connect from an agent
MCP endpoint (Claude Desktop, Cursor, any MCP client): https://invokera.com/r/public-holidays
REST endpoint (any HTTP caller): https://invokera.com/v1/public-holidays/tools
Calls require an endpoint token issued by the project owner.
Claude Code (one command)
claude mcp add --transport http public-holidays https://invokera.com/r/public-holidays --header "Authorization: Bearer inv_YOUR_TOKEN"
Success check: ask a question in the chat — if you can see your tool names, you're connected.
Claude Desktop configuration
{
"mcpServers": {
"public-holidays": {
"type": "http",
"url": "https://invokera.com/r/public-holidays",
"headers": { "Authorization": "Bearer inv_YOUR_TOKEN" }
}
}
}
Success check: ask a question in the chat — if you can see your tool names, you're connected.
curl example
curl -X POST https://invokera.com/v1/public-holidays/tools/get_next_public_holidays \
-H "Authorization: Bearer inv_YOUR_TOKEN" \
-H "Content-Type: application/json" -d '{}'
Available tools
get_next_public_holidays
List the upcoming public holidays for a country. Returns the next public holidays (from today onward) for the given country. Returns: Array of upcoming public holidays..
get_public_holidays
List public holidays for a country and year. Returns every public holiday of the given year for the given country, with local and English names, date and scope. Returns: Array of public holidays for the requested year and country..