Skip to main content
Glama

list_common_zones

Retrieve a curated list of common IANA timezones to select the correct zone for conversions. Uses local date-fns-tz and Intl, requiring no external time APIs.

Instructions

List a curated set of common IANA timezones. Uses local date-fns-tz / Intl only — no external time APIs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose a real behavioral trait: computation is local (date-fns-tz / Intl) with no external time APIs, implying no network latency or auth. It does not state the cardinality, ordering, or whether the list is exhaustive versus curated beyond the word "common".

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 short sentences, zero filler, with the core purpose front-loaded and the implementation note correctly subordinated.

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 parameterless listing tool with no output schema, the description conveys what it returns (a set of common IANA timezone identifiers) and how it sources them. A note on return shape or intended downstream use would close the remaining gap.

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?

The tool takes zero parameters, so the baseline for this dimension is 4; there is nothing for the description to disambiguate.

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?

States a specific verb and resource ("List ... common IANA timezones") and quantifies scope with "curated set of common". It reads clearly as a lookup/list utility distinct from convert_timezone, what_time_when and meeting_overlap, though it never names those siblings explicitly.

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?

There is no explicit when-to-use statement, no condition that selects this over the sibling timezone tools, and no note that the returned identifiers are meant to feed convert_timezone. Usage is only weakly implied by "curated set of common".

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