AU Agent Utilities
Server Details
Reliable Australian utility tools for AI agents, including state and territory-aware business-day, public-holiday, date-range and deadline calculations.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscalculate_australian_business_dateBInspect
Add or subtract Australian business days from a date for a specified state or territory. Positive numbers move forward and negative numbers move backward. The start date is excluded.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Starting date in YYYY-MM-DD format | |
| state | Yes | Australian state or territory | |
| business_days | Yes | Number of business days to shift. Positive = forward, negative = backward, 0 = unchanged. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Reveals important behavior: positive/negative direction and start date exclusion, which adds beyond the schema. However, it does not state whether state-specific public holidays are applied, how weekends are handled, or what the result format is, leaving the agent to assume the exact business-day semantics.
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?
Three short sentences, each carrying a useful detail: primary operation, direction, and start-date treatment. No filler or tautology.
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 explains the core logic but omits output format and does not differentiate from calculate_australian_deadline. Given simple schema and no output schema, an agent could call the tool correctly but may be uncertain about return value and tool selection.
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 covers all three parameters with descriptions (date format, state enum, business_days meaning). The description only repeats the direction semantics already in the schema, adding no new parameter-level meaning. Baseline 3 applies due to 100% coverage.
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?
States the specific operation ('Add or subtract Australian business days from a date') and the scoping parameter (state/territory). It differentiates from check/count siblings by describing a shift operation, but does not explicitly distinguish from calculate_australian_deadline, which may be a close alternative.
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?
No when-to-use or alternative tool guidance is given; the description only defines the operation. An agent must infer when this is appropriate and would not know whether calculate_australian_deadline or count_australian_business_days is more suitable for a given request.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calculate_australian_deadlineAInspect
Calculate an Australian deadline using either calendar days or business days, with an explicit start-date counting rule and optional rolling to the next or previous business day when the calculated date is not a business day.
| Name | Required | Description | Default |
|---|---|---|---|
| days | Yes | Number of days. Positive moves forward, negative moves backward, 0 keeps the start date. | |
| state | Yes | Australian state or territory | |
| day_type | Yes | business excludes weekends/public holidays; calendar counts every calendar day | |
| start_date | Yes | Starting date in YYYY-MM-DD format | |
| include_start_date | No | Whether the start date counts. Defaults to false. | |
| roll_if_non_business_day | No | What to do if the unadjusted deadline is not a business day: none, next or previous. Defaults to none. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does communicate the key calculation options: calendar vs business days, start-date counting, and rolling to next or previous business day. However, it largely paraphrases schema fields and omits details such as the output format, error handling, or the exact role of the state parameter.
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, front-loaded sentence that states the core action and the three key distinguishing features without any filler or redundancy. Every clause earns its place, and the structure makes the tool's behavior easy to grasp quickly.
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 tool is moderately complex with six parameters, no output schema, and no annotations. The description covers the main calculation rules, but it does not specify the return value representation, behavior on invalid inputs, or how to select this tool over its siblings. While sufficient for basic invocation, an agent would benefit from more explicit guidance.
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 the structured schema already documents all six parameters thoroughly. The description adds only high-level references to the start-date counting rule and rolling behavior, which correspond to include_start_date and roll_if_non_business_day. This meets the baseline but doesn't provide additional semantic depth 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 the tool's function: calculating an Australian deadline with configurable calendar or business day counting, a start-date counting rule, and optional rolling behavior. This specific verb and resource make the purpose obvious, though it does not explicitly differentiate itself from the sibling calculate_australian_business_date beyond the deadline-specific context.
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 the tool should be used for Australian deadline calculations but gives no explicit guidance on when to choose it over siblings like calculate_australian_business_date or count_australian_business_days. No exclusions or alternative routing are provided, leaving the agent to infer selection from the name and schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_australian_business_dayAInspect
Check whether a date is a business day in an Australian state or territory and return the previous and next business day.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in YYYY-MM-DD format | |
| state | Yes | Australian state or territory |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It does disclose the core behavior: a business-day check plus returning adjacent business days. However, it leaves material questions open — whether state public holidays are factored in (only implied by 'business day in an Australian state or territory'), how the previous/next values are formatted, and behavior on weekends.
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?
A single front-loaded sentence with zero filler. The verb and core purpose appear first, and the return behavior is appended in the same breath. Every word earns its place.
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 tool has two required parameters and no output schema, so the description should clarify the return shape; it names the returned items (previous/next business day) but not their structure. Holiday semantics are implied but not explicit. Adequate for a basic call, but an agent can't fully predict the response format.
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%: the date parameter has a YYYY-MM-DD format description with regex, and the state parameter has a full enum of Australian states/territories. The tool description adds no parameter meaning beyond what the schema already provides, so the baseline of 3 applies.
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 uses a specific verb ('Check') naming the resource ('whether a date is a business day in an Australian state or territory') and states the additional returned values (previous and next business day). This clearly distinguishes it from the sibling calculate_ and count_ tools without needing to inspect their schemas.
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?
No guidance is given for when to use this tool versus siblings like calculate_australian_business_date, calculate_australian_deadline, or count_australian_business_days. The intended selection condition (verifying a single date's status as opposed to computing offsets or counts) is left entirely to inference from tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
count_australian_business_daysAInspect
Count business days between two Australian calendar dates for a specified state or territory. Boundary inclusion is explicit so agents do not have to guess the counting rule.
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes | Australian state or territory | |
| end_date | Yes | End date in YYYY-MM-DD format | |
| start_date | Yes | Start date in YYYY-MM-DD format | |
| include_end_date | No | Whether to count the end date. Defaults to true. | |
| include_start_date | No | Whether to count the start date. Defaults to false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It usefully discloses that boundary inclusion is explicit, addressing a common counting ambiguity. However, it does not mention whether weekends and public holidays are excluded, how invalid date orders are handled, or what exactly happens with the state-specific holiday calendar.
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?
Two sentences, no fluff. The core purpose is front-loaded, and the second sentence clarifies a critical counting rule without wasting words.
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 counting tool with five parameters and no output schema, the description covers the core behavior well: counting business days, state specificity, and boundary handling. It stops short of explicitly mentioning return type, holiday handling, or date ordering behavior, but these are largely inferable from the tool name and schema.
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 the schema already documents every parameter. The description adds the important note about explicit boundary inclusion, but it does not meaningfully extend the parameter-level meaning beyond what the schema already provides.
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 uses a specific verb ('Count') and resource ('business days between two Australian calendar dates for a specified state or territory'). It clearly distinguishes this from siblings like calculate_australian_business_date or check_australian_business_day by focusing on range counting rather than single-day checking or date calculation.
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 gives no guidance about when to prefer this tool over its siblings, such as calculate_australian_business_date or calculate_australian_deadline. It implies usage for counting business days in a range, but does not state exclusions or suggest alternatives for related tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
calculate_australian_business_date - First observed
calculate_australian_deadline - First observed
check_australian_business_day - First observed
count_australian_business_days
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.MIT

industrylens-mcpofficial
AlicenseNot gradedqualityBmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.MIT- AlicenseNot gradedqualityCmaintenanceEnables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.MIT
- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.11961MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Most tools have clearly distinct purposes: checking a date, counting days, and calculating deadlines are separate operations. However, calculate_australian_business_date and calculate_australian_deadline overlap when deadlines use business-day offsets, which could cause some ambiguity.
Tool names follow a consistent snake_case pattern with a verb plus 'australian_business' or 'australian_deadline'. The main inconsistency is that two tools start with 'calculate', but overall the pattern is predictable and readable.
Four tools is a well-scoped set for an Australian business-date utility server. Each tool covers a distinct date-calculation need without unnecessary bloat or excessive granularity.
The toolset covers the core business-date domain: checking business days, adding/subtracting business days, counting business days, and calculating deadlines with configurable rules. There are no obvious dead ends for common Australian business-date workflows.