Skip to main content
Glama

Server Details

Current time, timezone conversion & date math for AI agents. On Cloudflare Workers.

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 5 of 5 tools scored. Lowest: 3.5/5.

Server CoherenceA
Disambiguation5/5

Each tool addresses a unique time-related operation: business days, time conversion, current time, timezone difference, and timezone lookup. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., get_current_time, list_timezones, convert_time), making them predictable and easy to understand.

Tool Count5/5

With 5 tools, the server covers essential time/timezone operations without being too sparse or overloaded. Each tool serves a clear purpose.

Completeness5/5

The tool set covers the core needs: knowing current time, converting between timezones, computing differences, listing timezones, and calculating business days. No obvious gaps for a time utility server.

Available Tools

5 tools
business_days_betweenAInspect

Count business days (Monday–Friday) between two dates, inclusive of both endpoints. Weekends are excluded; public holidays are not (calendar-only).

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateYesEnd date "YYYY-MM-DD".
start_dateYesStart date "YYYY-MM-DD".
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully covers behavior: counts Mon-Fri, inclusive endpoints, excludes holidays. It doesn't mention mutation or side effects, but as a counting function, that's not needed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One sentence, 31 words, no waste. Front-loaded with the main verb and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, description explains input format, behavior, and exclusions. Could mention return type (integer), but overall complete for a simple counting tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers 100% of parameters with format. Description adds inclusive endpoint nuance beyond schema. Baseline 3 increased due to added clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool counts business days (Monday–Friday) between two dates, inclusive of both endpoints. It distinguishes itself from siblings which are time conversion/comparison tools rather than date range counting.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context on what the tool does and its limitations (no holiday handling). However, it does not explicitly state when to use this vs alternatives, though no similar sibling exists.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

convert_timeAInspect

Convert a wall-clock date/time from one timezone to another. Give the time as it reads on the clock in from_timezone; get the equivalent instant in to_timezone. Handles DST automatically.

ParametersJSON Schema
NameRequiredDescriptionDefault
datetimeYesWall-clock time, e.g. "2026-07-09 15:30" or "2026-07-09T15:30:00".
to_timezoneYesTarget IANA timezone.
from_timezoneYesSource IANA timezone.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It mentions DST handling and clarifies input meaning, but does not specify output format, error handling, or timezone validation behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences. First sentence introduces purpose with verb+resource, second explains the process and DST handling. No redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Lacks output format description (e.g., return value structure, timezone inclusion) and error behavior. Since no output schema is provided, the description should compensate but does not fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear descriptions. The description adds value by explaining the wall-clock conversion concept beyond the parameter names and examples, providing additional semantic context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the verb 'Convert' and the resource 'wall-clock date/time from one timezone to another'. The concept of wall-clock time and equivalent instant distinguishes it from sibling tools like get_current_time or get_time_difference.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description implies when to use (converting a specific datetime between timezones) and provides clarifying context about wall-clock vs instant. However, it lacks explicit when-not-to-use or direct comparison with alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_current_timeAInspect

Get the current date and time in a given IANA timezone (e.g. 'Europe/Madrid', 'America/New_York', 'Asia/Tokyo'). Defaults to UTC. Use this whenever you need to know 'now' — you cannot know it otherwise.

ParametersJSON Schema
NameRequiredDescriptionDefault
timezoneNoIANA timezone name. Defaults to 'UTC'.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It correctly discloses the return value (current date and time), the optional timezone parameter defaulting to UTC, and implies no side effects. No contradictions exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first explains the purpose, second tells when to use. No wasted words. Perfectly front-loaded with the core action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description covers everything needed: what is returned, how to specify the timezone, default behavior, and the agent's need for this tool. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents the parameter. The description adds context with examples and default behavior, but doesn't add significant 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.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'current date and time'. It specifies IANA timezones with examples and distinguishes itself from sibling tools like business_days_between and convert_time by focusing on current time retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this whenever you need to know 'now' — you cannot know it otherwise,' providing clear when-to-use guidance. It lacks explicit when-not-to-use statements or direct alternatives, but the sibling tool names imply other uses.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_time_differenceAInspect

Get the current UTC-offset difference between two timezones, in hours (positive means timezone2 is ahead of timezone1).

ParametersJSON Schema
NameRequiredDescriptionDefault
timezone1YesFirst IANA timezone.
timezone2YesSecond IANA timezone.
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must fully cover behavioral traits. It mentions 'current' offset but does not disclose DST sensitivity, idempotency, or side effects. Missing important context about the dynamic nature of the result.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, highly concise, front-loaded with action and result, no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema and no annotations; description explains output unit (hours) and sign but lacks return type (number, float) and error handling. Adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with minimal descriptions ('First IANA timezone.'). Tool description adds sign convention but no further parameter details like format or examples. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses specific verb 'Get' and resource 'UTC-offset difference between two timezones' with clear sign convention, distinguishing it from siblings like convert_time (converts times) and get_current_time (gets current time).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or when-not-to-use guidance. Siblings exist but description does not direct the agent to choose this tool over alternatives for offset differences.

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. Pass a query like 'paris' or 'america' to filter. Useful for finding the exact name to use elsewhere.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNoCase-insensitive substring filter, e.g. 'tokyo'.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description discloses the tool is read-only (list/search) and supports case-insensitive filtering. It adds value beyond structured fields though could mention the default behavior when no query is given.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with zero waste. The purpose is front-loaded, and every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with one optional parameter, the description adequately covers listing and filtering. However, it does not specify the output format (e.g., array of strings), which is not critical but would complete the picture.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, detailing the query parameter as a case-insensitive substring filter. The description reinforces this but adds no new parameter semantics beyond the schema's existing explanation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists or searches valid IANA timezone names, a specific verb-resource pair. It distinguishes from sibling tools like convert_time or get_current_time, which perform calculations rather than lookups.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description states it's useful for finding exact names to use elsewhere, implying a pre-step for other time tools. It provides clear context but lacks explicit when-not-to-use or alternative tool references.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources