PlugRail Japanese Calendar
Server Details
Japanese holiday and business-day calculations using official Japan Cabinet Office data.
- 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.
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.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored. Lowest: 3.5/5.
Each tool has a clearly distinct purpose: adding business days, counting between dates, checking a single date, and listing holidays. There is no overlap or ambiguity.
Tool names use lowercase with underscores, mostly following a verb_noun pattern. 'business_days_between' is phrase-based rather than verb-prefixed but remains consistent in style.
With 4 tools, the server covers the core functionalities of a Japanese calendar utility without being too sparse or bloated.
The tool set provides fundamental business day and holiday operations. Minor gaps exist, such as missing a direct 'next business day' tool, but add_business_days can serve that purpose.
Available Tools
4 toolsadd_business_daysAInspect
指定した日付(date)の翌日から数えてN営業日目(days)の日付を返します。dateの当日は数えません。daysが負の場合は過去方向(dateの前日から遡ってN営業日目)に計算します。土日・日本の祝日を除外し、calendar="banking"を指定すると銀行休業日(12/31〜1/3)も除外します。dateが営業日かどうかだけ知りたい場合は is_holiday を使ってください。入力例: {"date": "2026-07-10", "days": 3}
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | 起点日 YYYY-MM-DD。例: "2026-07-10"。この日自体は数えません。 | |
| days | Yes | 何営業日先(正)/前(負)かを表す整数。0は不可(is_holidayまたはdays=1を使用)。 | |
| calendar | No | "standard"(既定)または"banking"(銀行休業日も除外)。 | |
| extra_closed_dates | No | 顧客固有の追加休業日(YYYY-MM-DD の配列)。例: ["2026-12-29", "2026-12-30"] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully covers behavioral aspects: it returns a date string, excludes weekends and Japanese holidays, optionally excludes banking holidays, allows custom extra closed dates, and clarifies that days=0 is not allowed. It also explains the counting direction for negative days.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph but well-structured: it leads with the core logic, then special cases, then calendar options, then a tip for an alternative, and finally an example. Every sentence is necessary and informative without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters, no output schema, and moderate complexity, the description is complete. It covers all execution details, parameter constraints, calendar variations, and provides an example input. It also differentiates from sibling tools, though it could explicitly mention return format, which is implied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema coverage is 100%, the description adds significant meaning beyond the schema: it clarifies that the start date is not counted, days=0 is invalid with suggested alternatives, and provides examples for date and extra_closed_dates. This enriches agent understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns the Nth business day after or before a given date, not counting the start date. It mentions the exclusion of weekends and Japanese holidays, and distinguishes itself from the sibling tool 'is_holiday' by advising to use that tool for checking if a date is a business day.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly tells when to use this tool (to add or subtract business days) and when not to (use 'is_holiday' if only checking if a date is a business day). It provides an input example and explains the behavior for negative days, giving clear context for appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
business_days_betweenAInspect
from〜to間の営業日数を数えます。既定では「fromを含まず、toを含む」境界です(例:「今日から支払期日まで何営業日か」)。include_from/include_toで境界を変更できます。土日・日本の祝日を除外し、calendar="banking"を指定すると銀行休業日(12/31〜1/3)も除外します。from > to はエラーになります(負の期間は未対応)。入力例: {"from": "2026-07-10", "to": "2026-07-20"}
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | 終点日 YYYY-MM-DD。例: "2026-07-20"。fromより前の日付は不可。 | |
| from | Yes | 起点日 YYYY-MM-DD。例: "2026-07-10"。 | |
| calendar | No | "standard"(既定)または"banking"(銀行休業日も除外)。 | |
| include_to | No | toを営業日数に含めるか。既定はtrue。 | |
| include_from | No | fromを営業日数に含めるか。既定はfalse。 | |
| extra_closed_dates | No | 顧客固有の追加休業日(YYYY-MM-DD の配列)。例: ["2026-12-29", "2026-12-30"] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: default inclusion/exclusion of boundaries, calendar parameter effects, holiday exclusions (weekends, Japanese holidays, banking holidays), and error on negative range. All key behavioral aspects are covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose. It is informative without being verbose. A slight improvement could condense some details, but overall it is efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all necessary aspects for a counting tool: inputs, defaults, error conditions, and special parameters. However, it does not explicitly state the return type (integer), though it is implied. Given no output schema, this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameters are documented in schema. The description adds value by explaining default values for include_from/include_to, providing an input example, and clarifying the effect of calendar and extra_closed_dates. It adds context beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool counts business days between two dates, specifies default boundary behavior (include to, exclude from), and provides an example. It distinguishes itself from sibling tools (add_business_days, is_holiday, list_holidays) by the counting action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use the tool (counting business days) and provides boundaries for from/to and error conditions (from > to). It does not explicitly compare to siblings or state when not to use, but the context and name make it clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
is_holidayAInspect
指定した日付が日本の祝日(国民の祝日・休日)かどうかを判定します。内閣府公表データに基づきます。入力例: {"date": "2026-01-01"}
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | YYYY-MM-DD形式の日付。例: "2026-01-01" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully disclose behavior. It only mentions data source but omits return value format, error handling for invalid dates, or update frequency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with a clear example, no redundancy, and front-loads the purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter tool without output schema, the description covers the core function and data source but lacks return value type and error handling info, making it moderately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of the parameter with format and example. The description adds an input example but no new semantics beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the tool's function: determining if a given date is a Japanese holiday. It also states the data source (Cabinet Office) and distinguishes from siblings like list_holidays by focusing on a single date.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking a single date but does not explicitly compare with sibling tools (add_business_days, business_days_between, list_holidays) or provide when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_holidaysAInspect
指定した年または期間の日本の祝日一覧を返します。入力例: {"year": 2026} または {"from": "2026-01-01", "to": "2026-06-30"}
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | 期間終了日 YYYY-MM-DD。例: "2026-06-30"。yearとは併用不可。 | |
| from | No | 期間開始日 YYYY-MM-DD。例: "2026-01-01"。yearとは併用不可。 | |
| year | No | 西暦年。例: 2026。from/toとは併用不可。 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must disclose behavioral traits. It only states it returns a list; it does not mention that it is read-only, has no side effects, or any constraints like rate limits or required authentication.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence with embedded examples, no redundant information, and clear front-loading of purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lacks output structure details. With no output schema, the agent is left guessing the format of the returned holiday list (e.g., dates, names), which is critical for downstream use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents all three parameters. The description adds example values but no additional semantic nuance beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns a list of Japanese holidays for a specified year or period, with example inputs, and effectively distinguishes itself from siblings that deal with business days or single-date checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description covers the primary use case (listing holidays by year/period) but does not explicitly exclude alternatives or mention conditions like when to prefer is_holiday.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!