get_holiday_stats
Retrieve detailed statistics for Taiwan holidays for a specific year or month using the Taiwan Holiday MCP Server. Input the year and optional month to access accurate holiday data.
Instructions
獲取指定年份或年月的台灣假期統計資訊
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | No | 要查詢的月份(可選),1-12 | |
year | Yes | 要查詢的年份 |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"month": {
"description": "要查詢的月份(可選),1-12",
"maximum": 12,
"minimum": 1,
"type": "integer"
},
"year": {
"description": "要查詢的年份",
"maximum": 2025,
"minimum": 2017,
"type": "integer"
}
},
"required": [
"year"
],
"type": "object"
}