time-mcp
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.
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 4.1/5 across 5 of 5 tools scored. Lowest: 3.5/5.
Each tool addresses a unique time-related operation: business days, time conversion, current time, timezone difference, and timezone lookup. No overlap in functionality.
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.
With 5 tools, the server covers essential time/timezone operations without being too sparse or overloaded. Each tool serves a clear purpose.
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 toolsbusiness_days_betweenAInspect
Count business days (Monday–Friday) between two dates, inclusive of both endpoints. Weekends are excluded; public holidays are not (calendar-only).
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | Yes | End date "YYYY-MM-DD". | |
| start_date | Yes | Start date "YYYY-MM-DD". |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| datetime | Yes | Wall-clock time, e.g. "2026-07-09 15:30" or "2026-07-09T15:30:00". | |
| to_timezone | Yes | Target IANA timezone. | |
| from_timezone | Yes | Source IANA timezone. |
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 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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | No | IANA timezone name. Defaults to 'UTC'. |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| timezone1 | Yes | First IANA timezone. | |
| timezone2 | Yes | Second IANA timezone. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Case-insensitive substring filter, e.g. 'tokyo'. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
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!