timezone-toolkit
Server Details
Timezone converter, world clock, date math & meeting scheduler for AI agents. No API key.
- 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 3.9/5 across 9 of 9 tools scored. Lowest: 3.3/5.
Each tool serves a clearly distinct purpose: conversion, batch conversion, date math, meeting slots, holiday check, timezone listing, resolution, current time, and offset. No significant overlap exists.
Most tools follow a verb_noun pattern (e.g., convert_timezone, list_timezones), but 'date_math', 'now_in', and 'tz_offset' deviate slightly. Overall consistent enough for intuitive use.
With 9 tools, the server is well-scoped for a timezone utility. Each tool covers a core operation without unnecessary duplication, striking a good balance between brevity and capability.
The set covers essential timezone operations: conversion, lookup, current time, offset, arithmetic, meeting planning, and holidays. A very complete surface for typical use cases.
Available Tools
9 toolsconvert_batchAInspect
Like convert_timezone but converts a single instant into many target timezones at once. Ideal for world-clock views.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | List of target IANA timezones. | |
| from | Yes | Source IANA timezone. | |
| datetime | Yes | ISO 8601 or natural language. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It describes core behavior (converts a single instant to many timezones) but lacks details on error handling, limits on number of timezones, or what happens on invalid input. Adequate but not comprehensive.
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 only, no superfluous information, front-loaded with comparison to sibling tool. 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?
For a simple conversion tool with no output schema, the description covers purpose, use case, and comparison to sibling. Lacks details on output format or potential errors, but for a straightforward tool this is nearly 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?
Schema coverage is 100% with descriptions for all three parameters. The description adds no additional parameter-specific details beyond the schema, so baseline score of 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?
Clearly states the verb ('converts'), resource ('a single instant into many target timezones'), and distinguishes from sibling 'convert_timezone' via the 'Like convert_timezone' comparison and the phrase 'many target timezones at once'.
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?
Explicitly mentions ideal use case ('world-clock views') and implies when to use this instead of 'convert_timezone' (when multiple targets needed), but does not explicitly state when not to use or provide alternative tools for different scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_timezoneAInspect
Convert a date/time from one IANA timezone to another. Accepts ISO 8601 or natural language ('next Tuesday 3pm'). Returns converted datetime, offset, abbreviation and DST flag.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Target IANA timezone. | |
| from | Yes | Source IANA timezone. | |
| datetime | Yes | ISO 8601 or natural language, e.g. "2026-07-09T15:30" or "next Tuesday 3pm". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses what is returned (converted datetime, offset, abbreviation, DST flag), but does not mention behavioral traits such as error handling, rate limits, or whether the operation is read-only (though implied).
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 two sentences with no redundant information. It is front-loaded with the core purpose and immediately provides additional details about input formats and return fields.
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 no output schema, the description adequately covers return values. It explains the function and output but lacks details on edge cases (e.g., invalid timezones, DST transitions). Overall sufficient for a straightforward conversion tool.
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 input schema has 100% description coverage, so baseline is 3. The description adds value by specifying that the 'datetime' parameter accepts ISO 8601 or natural language, which is not in the schema description, thus enhancing 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 the verb 'Convert' and the resource 'date/time from one IANA timezone to another'. It distinguishes itself from sibling tools like convert_batch (batch conversion) and date_math, which serve different purposes.
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 explicit guidance on when to use this tool versus alternatives. There are sibling tools like convert_batch and lookup_timezone, and the description does not mention when one should prefer this tool or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
date_mathAInspect
Add/subtract time to a date respecting DST (days are calendar-based, hours/minutes are absolute), or compute the difference between two datetimes in different zones.
| Name | Required | Description | Default |
|---|---|---|---|
| datetime | Yes | Base datetime: ISO 8601 or natural language. | |
| timezone | Yes | IANA timezone the base datetime is in. | |
| operation | Yes | Operation to perform. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description discloses DST handling behavior ('days are calendar-based, hours/minutes are absolute') and mentions difference across zones. Missing details on idempotency or error conditions are acceptable given the tool's nature.
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?
Single sentence that conveys both operations and key behavioral nuance. No wasted 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?
Despite lacking output schema, the description is sufficient for a time math tool. It covers the two main operations and DST behavior. Could mention return format but not critical.
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 description adds limited parameter-specific context beyond what the schema already provides. The DST note relates to behavior, not parameters.
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 two distinct operations: adding/subtracting time with DST handling, and computing the difference between two datetimes. This distinguishes it from siblings like convert_timezone.
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 two use cases (add/subtract and diff) but does not explicitly compare to siblings or state when not to use. Still, the two operations are clearly separated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_meeting_slotsAInspect
Suggest overlapping working-hour slots for a meeting across timezones (excludes weekends and, if a country code is given per participant, public holidays). FREE TIER: returns at most 1 slot; get ALL matching slots via the paid endpoint (see 'upgrade' in the response).
| Name | Required | Description | Default |
|---|---|---|---|
| duration | Yes | Meeting duration in minutes. | |
| date_range | Yes | Search window, e.g. {"start":"2026-07-13","end":"2026-07-17"}. | |
| participants | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that weekends are excluded, public holidays if country code given, and that free tier returns at most one slot. These are useful behavioral traits beyond what type hints alone would provide.
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 with no filler: first sentence defines core behavior, second adds critical free tier constraint. Front-loaded and 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?
Given no output schema, the description hints at the response structure ('at most 1 slot', 'upgrade' field) and explains exclusion logic. It is fairly complete for a simple tool, though missing error conditions or pagination details.
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 description adds context about participants' country code affecting holidays and the free tier limitation, but the schema already covers parameter meaning with 67% coverage. The description does not significantly enhance understanding 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 starts with 'Suggest overlapping working-hour slots for a meeting across timezones', providing a specific verb and resource, clearly distinguishing from sibling tools like convert_timezone or is_holiday.
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 on when to use this tool versus alternatives (e.g., is_holiday for holiday checks), nor when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
is_holidayBInspect
Check whether a date is a public holiday in a country (ISO 3166-1 alpha-2). Data from the free Nager.Date service.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date "YYYY-MM-DD". | |
| country_code | Yes | ISO country code, e.g. "US", "ES", "IN". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must cover behavioral traits. It only says 'check whether a date is a public holiday', implying a read-only operation, but it does not explicitly state idempotency, rate limits, or any side effects. The mention of a free service is the only extra behavioral hint.
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, well-crafted sentence of 22 words. It front-loads the core purpose ('Check whether a date is a public holiday') and includes useful data source info. Every word contributes meaning.
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 boolean check tool with only two parameters and no output schema, the description is adequate but lacks information about the return value (e.g., true/false or holiday name). No edge cases or error conditions are mentioned. The data source detail is a nice touch.
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% with both parameters already described. The description adds no new meaning to the parameters; it merely restates the date and country code in context. Baseline 3 is appropriate since the schema does the heavy lifting.
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 purpose: checking whether a specific date is a public holiday in a given country. It identifies the verb 'check', the resource 'public holiday', and the key inputs (date, country code). It also specifies the data source (Nager.Date). This differentiates it from sibling tools, which are all timezone-related.
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 does not provide any guidance on when to use this tool versus its siblings. It does not mention alternative tools for related tasks (e.g., checking local time or timezone conversions). A score of 2 reflects the lack of usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_timezonesAInspect
List or search valid IANA timezone names. Filter by city, region or country substring (e.g. 'kolkata', 'america').
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Case-insensitive substring filter. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It states listing/searching with filtering but does not disclose behavior like return format, pagination, or data freshness. The mention of 'valid' IANA names adds some context.
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 two short sentences, front-loading the main action. No redundant words; every part 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?
For a simple single-parameter tool with no output schema, the description provides the core functionality and an example. It could mention default behavior (all timezones if no query) but is largely sufficient.
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% for the single parameter 'query' with description. The tool description adds examples ('kolkata', 'america') but provides minimal additional meaning 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 verb 'List or search' and the resource 'valid IANA timezone names', with filtering examples. It is distinct from sibling tools that perform conversions, date math, or lookups.
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 listing/searching timezone names but does not explicitly contrast with siblings or provide when-not-to-use guidance. Usage context is inferred from the tool name and siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_timezoneAInspect
Resolve a city or country name to its IANA timezone(s), so you don't need the exact identifier. E.g. 'Delhi' -> Asia/Kolkata.
| Name | Required | Description | Default |
|---|---|---|---|
| city_or_country | Yes | City or country name, or ISO country code. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool resolves names to timezone(s) and gives an example, but does not disclose read-only nature, error handling, or any side effects. For a simple lookup, this is adequate but not exemplary.
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 plus an example, containing all necessary information without waste. It is front-loaded with the core action and example.
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 the tool has one parameter and no output schema, the description explains input flexibility and gives an example. It does not specify return format for multiple matches, but it is sufficiently complete for a simple lookup tool.
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 explains the parameter. The description adds a usage example but no additional meaning beyond what the schema provides. 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 states the tool resolves a city or country name to IANA timezone(s), distinguishing it from sibling tools like convert_timezone or list_timezones. The example 'Delhi' -> Asia/Kolkata makes the purpose concrete.
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 when to use: when you have a city/country name but not the exact IANA identifier. It does not explicitly list when not to use or mention alternatives, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
now_inAInspect
Current local time in an IANA timezone, with UTC offset, abbreviation and DST flag. Use whenever you need to know 'now'.
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | Yes | IANA timezone, e.g. 'Europe/Madrid', 'Asia/Kolkata'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must cover behavior. It lists the return fields (time, offset, abbreviation, DST flag), which is transparent. It could mention that the time is a snapshot or that DST handling is automatic, but the current disclosure is adequate.
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: the first defines the output, the second provides usage guidance. No wasted words, essential information is front-loaded and easily scannable.
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 tool with one required parameter, no output schema, and simple semantics, the description fully covers what the agent needs to know (purpose, input, output structure, use case).
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% with a clear example for the timezone parameter. The description restates what the schema provides (IANA timezone) without adding new semantic meaning, matching the baseline for high 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?
The description explicitly states the tool returns current local time with UTC offset, abbreviation, and DST flag, and specifies the input as an IANA timezone. This clearly distinguishes it from sibling tools like list_timezones or convert_timezone.
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 includes a usage directive ('Use whenever you need to know 🍬now'), which provides clear context. It doesn't explicitly mention when not to use or alternative tools, but the instruction is sufficient for the straightforward use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tz_offsetAInspect
Exact UTC offset of a timezone at a given instant (DST-aware). Handles fractional offsets like India +05:30 and Nepal +05:45.
| Name | Required | Description | Default |
|---|---|---|---|
| instant | No | ISO 8601 or natural language. Defaults to now. | |
| timezone | Yes | IANA timezone. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses key behaviors: DST-awareness and support for fractional offsets. However, it omits details like whether the instant defaults to now (though the schema covers that) and the exact return format. Decent but not exhaustive.
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 with no wasted words. The first sentence states the core purpose, and the second adds important behavioral nuance with examples. Highly 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 DST-awareness and fractional offsets, which are key for timezone tools. However, it does not specify the exact return format (e.g., '+05:30' or numeric seconds). Given no output schema, a bit more detail would improve completeness.
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% with clear parameter descriptions. The description does not add extra semantic meaning beyond what the schema provides. Baseline score of 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 states the verb ('Exact UTC offset'), the resource ('timezone at a given instant'), and distinguishes itself from sibling tools by specifying DST-aware and handling fractional offsets. It effectively communicates what the tool does uniquely.
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 is for fetching the UTC offset at a specific instant, but it does not explicitly state when to use it versus alternatives like 'convert_timezone' or 'lookup_timezone'. No exclusions or when-not-to-use guidance is given.
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!