get_public_holidays
Retrieve public holidays for a specific year with daily breakdown and total calculations using the MoCo MCP Server for accurate time tracking and project planning.
Instructions
Get all public holidays for a specific year with daily breakdown and total calculations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | Yes | Year to retrieve public holidays for (e.g., 2024) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"year": {
"description": "Year to retrieve public holidays for (e.g., 2024)",
"maximum": 2100,
"minimum": 2000,
"type": "integer"
}
},
"required": [
"year"
],
"type": "object"
}