Reliable Australian business-day, public-holiday and deadline tools for AI agents.
Reliable Australian utility tools for AI agents.
The first module is the Australian Business Day Engine — deterministic business-day, public-holiday and deadline calculations across all Australian states and territories.
Instead of asking an AI model to guess whether a date is a business day, the agent can call a tool and get a structured answer.
Transport: Streamable HTTP
Authentication: None required
Live endpoint:
https://au-business-day.auagentutilities.workers.dev/mcp
No local installation or API key is required.
The server is publicly available through Glama, where you can inspect the available tools and test the MCP.
Glama: Try AU Agent Utilities on Glama
Add the following to your Cursor mcp.json:
{
"mcpServers": {
"au-agent-utilities": {
"url": "https://au-business-day.auagentutilities.workers.dev/mcp"
}
}
}
Cursor supports remote MCP servers over Streamable HTTP.
Add the server to your MCP configuration:
{
"servers": {
"au-agent-utilities": {
"type": "http",
"url": "https://au-business-day.auagentutilities.workers.dev/mcp"
}
}
}
Any MCP client that supports remote Streamable HTTP servers can connect to:
https://au-business-day.auagentutilities.workers.dev/mcp
Once connected, try asking your agent:
Is 27 December 2021 a business day in NSW? If not, give me the previous and next business day.
What is 5 Victorian business days after 24 December 2026?
Count the business days between 1 December and 31 December 2026 in Queensland.
Calculate a NSW deadline 7 calendar days after 20 December 2021 and roll it to the next business day if necessary.
| Tool | What it does |
|---|---|
check_australian_business_day | Checks whether a date is an Australian business day and returns the previous and next business day |
calculate_australian_business_date | Adds or subtracts business days |
count_australian_business_days | Counts business days between two dates with explicit boundary rules |
calculate_australian_deadline | Calculates calendar or business-day deadlines and optionally rolls non-business dates |
Supports:
ACT · NSW · NT · QLD · SA · TAS · VIC · WA
Handles weekends, state and territory public holidays, and applicable substitute holidays represented in the underlying holiday dataset.
Local, regional and industry-specific holidays are not guaranteed unless they are represented in the relevant jurisdiction dataset.
check_australian_business_dayChecks whether a date is a business day in an Australian state or territory.
Returns:
Example:
Date: 2021-12-27
State: NSW
Result:
Business day: false
Reason: public_holiday
Holiday: Christmas Day (substitute day)
Next business day: 2021-12-29
calculate_australian_business_dateAdds or subtracts Australian business days from a starting date.
Positive numbers move forward and negative numbers move backward.
The start date is excluded by default.
Example:
Start date: 2021-12-24
State: NSW
Business days: 1
Result:
2021-12-29
The calculation skips weekends and applicable public holidays, including substitute public holidays.
count_australian_business_daysCounts business days between two Australian calendar dates.
Boundary inclusion is explicit so agents do not have to guess whether the start or end date should be counted.
The result can include:
Example:
Start date: 2021-12-24
End date: 2021-12-29
State: NSW
Include start: false
Include end: true
Result:
Business days: 1
calculate_australian_deadlineCalculates an Australian deadline using either calendar days or business days.
Supports explicit rules for:
Example:
Start date: 2021-12-20
State: NSW
Days: 7
Day type: calendar
Include start: false
Roll: next
The unadjusted deadline is:
2021-12-27
Because that date is a substitute public holiday, the final deadline becomes:
2021-12-29
The engine accounts for:
Public-holiday information is provided using the date-holidays dataset.
Local, regional or industry-specific holidays are not guaranteed unless represented in the relevant jurisdiction dataset.
The Worker can also be used directly over HTTP.
/check?date=2021-12-27&state=NSW
/calculate?date=2021-12-24&state=NSW&days=1
/count?start_date=2021-12-24&end_date=2021-12-29&state=NSW&include_start=false&include_end=true
/deadline?start_date=2021-12-20&state=NSW&days=7&day_type=calendar&include_start=false&roll=next
AI agents are good at reasoning, but deterministic local rules should not depend on guessing.
AU Agent Utilities is being built as a reliable Australian utility layer for agents, with the Business Day Engine as the first module.
Future utilities will expand beyond dates into other Australian data, verification and workflow functions.
The MCP server is deployed on Cloudflare Workers and is available remotely through the live MCP endpoint above.
It is also published through Smithery as:
creatorhub121/au-agent-utilities
1.2.0
This listing does not have a supported local package template. Use the maintainer’s documentation for its hosted endpoint, authentication, and client-specific setup. No install command has been inferred.