Skip to main content
Glama
qianwei2333

cn-holiday-mcp

by qianwei2333

cn-holiday-mcp

A MCP (Model Context Protocol) server for querying Chinese statutory holidays and makeup workdays, zero-dependency, offline-ready, and works out of the box.

Data source: General Office of the State Council's Notice on the Arrangement of Some Holidays in 2025 and Notice on the Arrangement of Some Holidays in 2026 (State Council Office Circular).

Features

  • ✅ Zero-dependency: pure Node.js standard library, runs directly with node >= 18

  • ✅ stdio transport, compliant with MCP 2024-11-05 protocol

  • ✅ Complete data for 2025 and 2026 (including all makeup workdays)

  • ✅ Two tools: query_holiday (query a specific day), list_holidays (list the whole year)

Related MCP server: Nager MCP v202 MCP Server

Quick Start

node src/server.mjs          # 直接运行
npm start                    # 或通过 npm script
node tests/smoke.mjs         # 冒烟测试

Connect to Claude Desktop

Edit claude_desktop_config.json:

{
  "mcpServers": {
    "cn-holiday": {
      "command": "node",
      "args": ["C:\\path\\to\\cn-holiday-mcp\\src\\server.mjs"]
    }
  }
}

Tools

Tool

Parameters

Example

query_holiday

date: YYYY-MM-DD

2026-02-17 → Spring Festival holiday

list_holidays

year: year (optional)

2026 → full-year schedule

Example Q&A

  • 2026-02-14 → "Makeup workday for Spring Festival, work required"

  • 2026-10-05 → "National Day holiday, 7 days total"

  • 2026-03-10 → "Regular working day"

Roadmap (Pro)

  • Lunar calendar / almanac / solar terms (perpetual calendar)

  • 2027 and beyond (updated as soon as officially released)

  • Enterprise scheduling API, subscription-based (HTTP + token)

  • Holidays in multiple countries

English

cn-holiday-mcp is a zero-dependency MCP server for Chinese public holidays and makeup workdays (调休), covering 2025–2026 per official State Council notices. No API keys, no network calls, fully offline.

Tools

  • query_holiday — is a given date (YYYY-MM-DD) a public holiday, a makeup workday, or a regular working day?

  • list_holidays — full yearly schedule including makeup workdays.

Run

node src/server.mjs   # Node.js >= 18, nothing to install

Install — Claude Desktop claude_desktop_config.json:

{
  "mcpServers": {
    "cn-holiday": {
      "command": "node",
      "args": ["C:\\path\\to\\cn-holiday-mcp\\src\\server.mjs"]
    }
  }
}

Roadmap — lunar calendar / solar terms; 2027+ schedules; enterprise scheduling API (subscription); more countries.

License

MIT

Available Tools

2 tools
list_holidaysA

列出某一年(或全部已收录年份)的法定节假日安排,包括放假区间、天数与调休上班日。

ParametersJSON Schema
NameRequiredDescriptionDefault
yearNo年份,如 "2026";缺省时返回全部已收录年份

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It clearly discloses that the tool returns holiday periods, day counts, and adjusted work days, and that omitting the year returns all recorded years. This goes beyond a simple 'list holidays' to specify the output content, though it does not mention side effects or read-only nature (implicit).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is concise and front-loaded. It starts with the action and resource, provides the scoping condition, and enumerates the output contents. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one optional parameter and no output schema. The description covers the main functionality and parameter behavior. It does not specify the exact return format (e.g., array structure), but given minimal complexity and the presence of content details, it is sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the 'year' parameter, so the schema already explains it. The description paraphrases the parameter (year or all years) without adding significant new meaning. It is adequate but does not enhance beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists statutory holiday arrangements for a given year or all recorded years, specifying included details (holiday periods, number of days, adjusted working days). This is a specific verb+resource that distinguishes it from a generic 'query' tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs the sibling tool 'query_holiday'. The description only implies its use for listing holidays, but does not mention alternatives or exclusions. It gives a default behavior hint (returns all years if year omitted), but no when-to-use or when-not-to-use comparison.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

query_holidayA

查询某一天(YYYY-MM-DD)是法定节假日、调休上班日还是普通工作日。返回节假日名称、放假区间和该区间内的调休上班日。

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYes日期,格式 YYYY-MM-DD,例如 2026-02-17

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses the output categories and return fields but does not mention error handling, edge cases (e.g., invalid dates), or any side effects. For a read-only query, this is adequate but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that front-loads the purpose and key return data. There is zero fluff, and every clause contributes meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 param, no output schema, no annotations), the description adequately covers what it does and what it returns. It could add notes on behavior for non-holiday days or invalid inputs, but overall it is sufficiently complete for an agent to use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% — the date parameter has its own format and example. The description repeats the format (YYYY-MM-DD) but adds no extra semantic value beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: querying whether a specific date is a legal holiday, compensatory workday, or ordinary day. It also specifies the return data (holiday name, interval, compensatory days), which distinguishes it from the sibling list_holidays that likely lists all holidays.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for a single date ("查询某一天") but does not explicitly mention when to use this over the sibling tool list_holidays, nor any exclusion criteria. The context is understandable but lacking explicit guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv0.1.0
    • First observedlist_holidays
    • First observedquery_holiday

TDQS

A3.9/5.0

Scored across 2 tools

Disambiguation5/5

query_holiday targets a single specific date while list_holidays returns full annual arrangements, so their purposes are clearly distinct. There is no practical overlap that would cause an agent to misselect.

Naming Consistency5/5

Both tool names follow a consistent verb_noun pattern: query_holiday and list_holidays. The only minor difference is singular versus plural noun, which is natural and does not harm consistency.

Tool Count3/5

Two tools is slightly thin, but each tool earns its place for the server's narrow read-only purpose. It falls at the borderline edge of the typical 3-15 tool range.

Completeness4/5

The server covers the core holiday use cases: checking a specific day and listing a year's holiday schedule. Minor gaps exist, such as date-range lookups or upcoming-holiday queries, but they are workable conveniences rather than critical dead ends.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    A Taiwan holiday query server based on Model Context Protocol (MCP), providing accurate information on scheduled holidays and make-up working days, supporting multiple query methods and integration with AI tools.
    3
    2
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides access to the Nager.Date API, enabling AI agents to retrieve public holiday information for various countries. It facilitates seamless integration with LLMs through standardized tools and Docker-based deployment.
    -
  • A
    license
    A
    quality
    D
    maintenance
    A Taiwan holiday query server based on the Model Context Protocol, providing accurate Taiwan public holiday and compensatory work day information.
    3
    14
    MIT