bizdays
bizdays is an MCP server that provides verified, deterministic business-day calculations for 206 countries, accounting for country-specific weekend rules and real public holidays. It offers 6 tools:
add_business_days: Calculate a date N working days before or after a start date, skipping the correct weekends and public holidays for a given country.count_business_days: Count working days between two dates (inclusive or exclusive), with a breakdown of weekend days and named holidays skipped.is_business_day: Check whether a specific date is a working day in a given country; if not, get the exact reason (weekend, named public holiday, or custom holiday).next_business_day: Get the first working day strictly after a given date.previous_business_day: Get the most recent working day strictly before a given date.country_rule: Retrieve a country's weekend rules (and their source — CLDR, curated override, or Sat/Sun default), whether a public-holiday calendar is applied, a verified/unverified confidence flag, and any relevant caveats.
All tools support an optional extraHolidays parameter to inject custom non-working dates (e.g., company shutdowns).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bizdaysWhat is 5 business days after Dec 22, 2025 in the UK?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bizdays
Verified business-day math for AI agents — holidays + per-country weekends, not guesses.
Verified, trustworthy data tools for AI agents. "Qiniso" means "truth" in Zulu.
Website · npm · MCP endpoint · MCP Registry
LLMs answer "what date is 5 business days after Dec 22nd in the UK?", "how many working days are in this month?", and "is Friday a working day in Saudi Arabia?" confidently and often wrongly — they miscount, forget public holidays, and assume every country's weekend is Saturday/Sunday. bizdays gives an agent the deterministic answer from real public-holiday calendars and per-country weekend rules, showing the weekend rule and the exact holidays it skipped.
Two things break naive business-day math, and bizdays fixes both: weekends aren't Sat/Sun everywhere (Fri/Sat in Saudi Arabia, Egypt & Israel; Fri in Iran; Sun in India; Sat/Sun in the UAE since 2022), and "holiday" must mean a real day off — off-the-shelf data counts observances like Valentine's Day and Christmas Eve, which are not days off.
Counting the working days in a month, a frontier LLM with no tools is wrong 63% of the time, cold — and 23% across business-day questions overall. bizdays: 0%.
Add it to Claude
Settings → Connectors → Add custom connector, and paste — no login, no key:
https://bizdays.qinisolabs.workers.dev/mcpStateless, reads no user data, requires no secrets. Prefer to run it locally over stdio? Add { "command": "npx", "args": ["-y", "@qinisolabs/bizdays"] } under mcpServers in your client config.
Related MCP server: inday-api
Use it as a library
Every tool is also a typed function — no MCP required:
npm i @qinisolabs/bizdaysimport { addBusinessDays, countBusinessDays, isBusinessDay } from "@qinisolabs/bizdays";
addBusinessDays("2025-12-22", 5, "GB").result; // "2025-12-31" (skips Christmas + Boxing Day)
countBusinessDays("2025-12-01", "2025-12-31", "US"); // { businessDays: 22, ... }
isBusinessDay("2025-06-13", "SA").isBusinessDay; // false — Friday is weekend in Saudi Arabia
isBusinessDay("2025-02-14", "US").isBusinessDay; // true — Valentine's Day is not a public holidayEvery function returns a rich result: the answer, the weekday, exactly which weekends and named holidays were skipped, the weekend rule and its source, and a confidence flag.
What it does — 6 tools
Tool | What it answers |
add_business_days | What date is N working days from a start date? (N may be negative) |
count_business_days | How many working days between two dates? (endpoints inclusive by default) |
is_business_day | Is this date a working day? If not, why (weekend / public holiday with its name)? |
next_business_day | First working day strictly after a date |
previous_business_day | Last working day strictly before a date |
country_rule | The weekend rule + its source, whether holidays apply, and a confidence flag |
Public holidays for 206 countries (and subdivisions) come from date-holidays, filtered to type: "public". Weekends come from Unicode CLDR via the runtime Intl API, plus a curated data/weekend-overrides.json correction layer (e.g. Bangladesh Fri/Sat, Nepal Sat-only) — the maintained data is the moat.
What it is not
Not all-holidays. It counts weekends and public holidays only — not regional or optional observances. Pass company shutdowns or regional days via
extraHolidays.Not uniformly verified. A Tier-1 set of ~65 countries is verified; others work but are flagged
unverified. Where no holiday calendar exists (e.g. Qatar, Kuwait, Oman), the correct weekend still applies and the response says so (holidaysApplied: false).Not a live service dependency. The library makes no network calls; dates are
YYYY-MM-DDin UTC.
Architecture
A single TypeScript package exposing one MCP server over two transports — stdio (local / npx) and a Cloudflare Worker (the hosted edge endpoint) — both driven by the same core.ts tool definitions, which also power the importable library.
npm install
npm run build
npm testPrivacy
This tool runs locally on your machine and is built not to collect, store, or transmit your data — no analytics, no telemetry, no account. All reference data is bundled — no network calls, and nothing leaves your device. Full policy: https://qinisolabs.github.io/privacy.html.
License
Apache-2.0. Bundled holiday data is from date-holidays (ISC AND CC-BY-3.0); see NOTICE.
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/qinisolabs/bizdays'
If you have feedback or need assistance with the MCP directory API, please join our Discord server