Skip to main content
Glama

Public Holidays

Server Details

Public holidays for 100+ countries — by year, or the next ones coming up. Via Nager.Date.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools are clearly distinct: one returns upcoming holidays from today, the other returns all holidays for a specific year. There is no overlap or ambiguity in their purposes.

Naming Consistency5/5

Both tools follow a consistent 'get_' + descriptive noun pattern, and the names clearly reflect their functionality: 'get_next_public_holidays' and 'get_public_holidays'. The convention is uniform.

Tool Count3/5

With only 2 tools, the server feels thin for a public holidays domain. While the core operations are present, the low count is borderline and may leave users wanting additional functionality such as listing supported countries.

Completeness3/5

The two tools cover 'next holidays' and 'holidays for a year', but there is no way to list supported countries or query holidays by specific date ranges. This is a notable gap that could cause agent failures when trying to validate country codes or find a holiday on a particular date.

Available Tools

2 tools
get_next_public_holidaysA
Read-only
Inspect

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..

ParametersJSON Schema
NameRequiredDescriptionDefault
countryCodeYesISO 3166-1 alpha-2 country code, e.g. US, DE, CN.
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering safety. The description adds the behavioral detail that holidays are returned 'from today onward' and that the return type is an array. However, it does not disclose edge cases like empty results, timezone handling, or holiday structure beyond that.

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

Conciseness3/5

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

The description is short but redundant: 'List the upcoming public holidays for a country' and 'Returns the next public holidays (from today onward)' essentially repeat the same information. The trailing 'Returns: Array of upcoming public holidays..' adds a return type note but includes a double period. It is not as tight as it could be.

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

Completeness3/5

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

Given the tool's simplicity (one parameter, no output schema, read-only annotation), the description covers the basic behavior and return type. However, it lacks details about the structure of each holiday object, potential empty arrays, or any additional constraints. The sibling tool comparison is also absent, so completeness is adequate but not thorough.

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%, so the schema already documents countryCode as an ISO 3166-1 alpha-2 code with a pattern. The description merely refers to 'given country' and adds no additional semantic information beyond what the schema provides. Baseline of 3 applies.

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 'List the upcoming public holidays for a country' and further specifies 'Returns the next public holidays (from today onward)'. This is a specific verb+resource with a temporal scope that distinguishes it from the sibling tool 'get_public_holidays' by emphasizing 'next' and 'from today onward'.

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 when to use the tool (for upcoming holidays from today onward) but does not explicitly mention when to use the alternative 'get_public_holidays'. There is no 'when not to use' or exclusion guidance, leaving the comparison to inference.

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

get_public_holidaysA
Read-only
Inspect

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..

ParametersJSON Schema
NameRequiredDescriptionDefault
yearYesCalendar year, e.g. 2026.
countryCodeYesISO 3166-1 alpha-2 country code, e.g. US, DE, CN.
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is covered. The description adds useful context that results include local and English names, date, and scope, and that the return is an array. No contradictions with annotations.

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

Conciseness4/5

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

The description is short and front-loaded with the main purpose. However, it contains a slight redundancy: 'Returns every public holiday...' is repeated in 'Returns: Array of public holidays...' with a double period, which is a minor structural flaw.

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?

For a simple list tool with rich annotations and a complete schema, the description adequately explains the return content (local/English names, date, scope). It could explicitly mention the sibling tool for better contextual completeness, but the core information is present.

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%, with both parameters (year and countryCode) well described in the schema. The description does not add parameter-level details, but the baseline of 3 is appropriate since the schema carries the full burden.

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 public holidays for a given country and year, with the explicit scope of returning every holiday for that period. This distinguishes it from the sibling tool get_next_public_holidays, which likely returns only upcoming holidays.

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

Usage Guidelines4/5

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

The description clearly implies when to use the tool: when you need all public holidays for a specific country and year. It does not explicitly exclude alternatives or mention the sibling tool, so it lacks the when-not-to-use guidance that would merit a 5.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Provides access to the Nager.Date Public Holiday API for querying global holiday information through the Model Context Protocol. It enables AI agents to interact with standardized tools for holiday-related date calculations and country-specific lookups.
    Last updated
  • A
    license
    -
    quality
    F
    maintenance
    MCP server for accessing Nager.Date public holidays data. It provides tools to query and retrieve holiday information for various countries through natural language or direct tool calls.
    Last updated
    17
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources