The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MCP Jp Calendar listing page.
Give your AI agent correct answers about Japanese business days. An MCP server that tells Claude (or any MCP client) whether a date is a working day in Japan, what date payment is actually due, and which fiscal quarter you're in — accounting for national holidays, substitute holidays, and conventions no simple weekday check gets right. No API keys, no network calls: all holiday data (2020–2030) is embedded in the package.
meta fieldA naive "is it a weekday" check gets Japanese business dates wrong more often than you'd expect. A few real examples this server handles correctly:
| Situation | Naive weekday check | What actually happens |
|---|---|---|
| Substitute holiday (振替休日) | Children's Day, May 5 2026, falls on a Sunday → looks like the next day (Mon May 6) is a normal business day | May 6 2026 is also a public holiday — Japanese law shifts the holiday to the next non-holiday day |
| Citizens' holiday (国民の休日) | Sep 22 2026 is a Tuesday, sandwiched between two holidays → looks like a business day | It's a holiday too: when a weekday falls between two national holidays, it automatically becomes one |
| Gotobi settlement days (五十日) | Japanese invoices and payments conventionally settle on the 5th/10th/15th/20th/25th/month-end — irrelevant in most other countries | next_gotobi finds the next one and, if it lands on a holiday, tells you the actual (pushed-back) business day payment will clear |
| Fiscal year (年度) | December looks like Q4 if you assume a January-start year | Most Japanese companies run an April–March fiscal year, so December is actually Q3 |
Get any of these wrong in a scheduling or invoicing agent and you'll pick a bank holiday as a due date, or misreport a quarter. This server encodes the actual rules so your agent doesn't have to guess.
No install step required. Add this to your Claude Desktop config (claude_desktop_config.json):
%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop and the tools become available. You can also run it directly:
Or install it globally:
.mcpb bundle (one-click install for Claude Desktop)MCP Bundles let you install a local MCP server with a single double-click, no terminal required. Build one from source:
Then double-click the resulting mcp-jp-calendar.mcpb file to install it in Claude for macOS/Windows.
All dates are given and returned in YYYY-MM-DD format (e.g. 2026-08-15). month_end_info takes a YYYY-MM month string (e.g. 2026-08).
| Tool | Description |
|---|---|
is_business_day | Check whether a given date is a business day |
add_business_days | Get the date N business days after/before a given date |
count_business_days | Count business days between two dates (inclusive) |
next_gotobi | Get the next "gotobi" settlement day (5th, 10th, 15th, 20th, 25th, or last day of month), plus the actual business day if that date is a holiday |
month_end_info | Get the last day of a given month, and the effective closing date if that day is a holiday |
fiscal_period | Determine which fiscal year and quarter a date falls in (fiscal year start month is configurable; defaults to April) |
list_holidays | List Japan's national holidays for a given year |
All of is_business_day, add_business_days, count_business_days, next_gotobi, and month_end_info accept two optional parameters:
weekendDays: array of weekday numbers to treat as non-working days. 0=Sun … 6=Sat. Defaults to [0, 6].customHolidays: array of YYYY-MM-DD strings for company-specific closures (e.g. a year-end shutdown).is_business_day — a Saturday:
add_business_days — 1 business day after a Friday:
count_business_days — a full Mon–Sun week:
next_gotobi — the 15th falls on a Saturday, so it's pushed back:
month_end_info — month-end falls on a Sunday:
fiscal_period — December, under Japan's standard April-start fiscal year:
list_holidays — excerpt showing a citizens' holiday (国民の休日):
(Examples above are abbreviated for readability — every response also includes a meta field; see The meta field.)
Only dates from 2020 to 2030 are supported. Dates outside this range return an error.
meta fieldEvery tool response includes a meta block alongside the actual result:
dataVerifiedOn: the date this server's holiday data was last checked against the primary source.sources: the source(s) backing this response (fiscal_period doesn't use holiday data at all, so its
sources is an empty array).staleWarning: a bilingual (Japanese/English) warning when more than 6 months have passed since
dataVerifiedOn; null otherwise.Dates outside the supported range (2020–2030) still return a hard error rather than a warning, since no data exists for those dates at all.
src/holidays.ts whenever the Public Holiday Act is amended or the
Cabinet Office publishes updated data. Since this server never makes network calls at runtime,
reflecting a change requires a manual update.meta.dataVerifiedOn and meta.staleWarning, and confirm against the
latest Cabinet Office announcement if needed.Clone and build from source if you want to modify the server:
Claude Desktop config for a locally built copy:
If a holiday law changes, this server's embedded data will not update automatically — src/holidays.ts needs to be updated manually.
Other MCP servers by the same author: