Skip to main content
Glama

Convert Time Zone

convert_time_zone
Read-onlyIdempotent

Convert datetime between zones.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateTimeYes
toTimeZoneYes
dstAmbiguityNo
fromTimeZoneYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "dateTime": "2024-01-15T14:30:00",
      +    "fromTimeZone": "America/New_York",
      +    "toTimeZone": "Europe/London"
      +  },
      +  {
      +    "dateTime": "2024-06-20T10:00:00",
      +    "dstAmbiguity": "PICK_EARLIER",
      +    "fromTimeZone": "Asia/Tokyo",
      +    "toTimeZone": "America/Chicago"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "description": "Converted datetime between timezones",
      +  "type": "object"
      +}
  2. First observed

TDQS

C2.4/5.0
Behavior2/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, destructiveHint=false, which cover safety and side effects. The description adds no extra behavioral context such as valid time zone formats, handling of DST ambiguity (despite the dstAmbiguity param), or output structure. Annotations carry the burden adequately, so a score of 2 reflects minimal added value.

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

Conciseness3/5

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

The description is a single sentence of 5 words—maximally concise but at the expense of informativeness. It earns a middle score because conciseness is achieved but critical details are omitted.

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

Completeness2/5

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

Despite having an output schema, the description does not mention return values or behavior (e.g., does it return the time at both zones?). With 4 parameters including DST ambiguity handling, the description is too sparse to fully inform an agent about input/output expectations. Siblings increase the need for clarity, which is not met.

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

Parameters1/5

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

Schema coverage is 0%: no property descriptions exist in the schema. The description 'Convert datetime between zones' provides no information about parameter formats (e.g., dateTime format, time zone naming), required vs optional status, or the meaning of dstAmbiguity. This is a critical gap given the lack of schema descriptions.

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

Purpose4/5

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

The description 'Convert datetime between zones' clearly states the action (convert), the resource (datetime), and the scope (between zones). It distinguishes from siblings like 'current_time' and 'translate_to_iso' by focusing on conversion between arbitrary zones rather than obtaining current time or formatting. However, it does not explicitly contrast with related tools.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. Siblings include multiple time-related tools (current_time, current_iso_zoned_date_time, translate_to_iso, list_zones), but the description gives no context about prerequisites, typical use cases, or exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation2/5

Several tools overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research all answer natural-language data questions, and ask_pipeworx_beta is explicitly identical to ask_pipeworx right now. The current_time* variants and multiple Polymarket scanners also create real selection ambiguity, though the memory and subscription tools are clearly distinct.

Naming Consistency3/5

Names are mostly lowercase snake_case and readable, but there is no consistent verb_noun pattern: some are imperative (ask_pipeworx, compare_entities, generate_llms_txt) while others are object-first (entity_profile, recent_changes, pipeworx_trending). Subfamilies like current_time* and polymarket_* are internally consistent, but the overall set follows no predictable convention.

Tool Count2/5

Forty tools is far too many for a server named Timeapi Io; only about nine tools actually relate to time zones and current time. The rest form a sprawling Pipeworx research, prediction-market, memory, and subscription platform, making this a mega-bundle rather than a well-scoped toolset.

Completeness3/5

The time-related surface covers current time, zone conversion, zone metadata, and ISO parsing, but lacks common date math or general formatting operations. The Pipeworx side is quite complete for research and fact-checking, but the mixed domain makes coverage uneven and hard to reason about as a single coherent service.