Skip to main content
Glama

time_at_location

Read-onlyIdempotent

Get the current local time, time zone, and DST status for any location to coordinate schedules across sites or interpret timestamps.

Instructions

Get the time zone and current local time at a location.

Returns the IANA zone name, current local time, UTC offset, whether daylight saving is active, and when the next DST transition happens. Computed offline from a bundled boundary dataset.

Useful for scheduling across sites, interpreting timestamps in GPS traces, and working out delivery or support-window overlaps.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
locationYesPosition, as coordinates or a place name.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
infoYes
metaYes
latitudeYes
longitudeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds meaningful context beyond that: it is computed offline from a bundled boundary dataset, and it discloses the specific return fields including DST transition timing. This gives the agent useful expectations about data source and behavior without contradicting annotations.

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?

The description is compact and well-structured: a one-line summary, a concise list of return values, a note on the offline computation, and relevant use cases. Every sentence adds value, and the most important information is front-loaded.

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 single-parameter, read-only tool with a rich output schema, the description covers the tool's purpose, return contents, computational basis, and example use cases. Nothing essential is missing for an agent to decide whether and how to invoke it.

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?

The input schema already describes the single parameter as 'Position, as coordinates or a place name,' so schema coverage is 100%. The description does not add further parameter-level detail such as accepted coordinate formats or how place names are resolved, but the schema already carries the necessary meaning, so a baseline score of 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 opens with a specific verb and resource: 'Get the time zone and current local time at a location.' It then enumerates the exact outputs (IANA zone name, local time, UTC offset, DST status, next DST transition), which clearly differentiates it from sibling tools like place_geocode, env_weather, or sun_moon.

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 provides concrete use cases: scheduling across sites, interpreting GPS timestamps, and delivery/support-window overlaps. It does not explicitly name alternatives or state when not to use this tool, but the context is clear enough for an agent to recognize appropriate invocation scenarios.

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