Skip to main content
Glama

UTC weekday 1-7

timezone

Current time in a named IANA timezone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoHTTPS URL to normalize or cite
hostNoPublic hostname
jsonNoJSON text to validate; discarded after the check
zoneNoIANA timezone name

Schema Changelog

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

  1. First observed

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states the basic function and offers no details on error handling (e.g., invalid zone), DST considerations, return format, or whether the time is server-side or client-side. The description is a bare statement.

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

Conciseness4/5

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

The description is concise and front-loaded, consisting of a single, clear sentence. It wastes no words. However, it may be too terse, leaving out necessary context about parameters.

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?

For a simple tool, the description is incomplete. It lacks information about return format, error behavior, and, critically, the fact that only the 'zone' parameter is used while others are irrelevant. The misleading schema adds complexity that the description fails to address.

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

Parameters2/5

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

While the schema has 100% coverage (each parameter has a description), the description does not clarify that only 'zone' is actually used. The presence of 'url', 'host', and 'json' with unrelated descriptions (normalize, cite, validate) is confusing; an agent might wonder if the tool handles those as well. The description should explicitly state that only 'zone' is relevant, but it does not.

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 clearly states the tool's function: returning current time for a named IANA timezone. It implicitly differentiates from siblings like utc-time (which likely returns UTC) and iana-zones (which likely lists zones). However, it does not explicitly mention the 'zone' parameter or clarify that other schema fields are irrelevant, which slightly muddies the purpose.

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 guidance on when to use this tool versus alternatives like utc-time or iana-zones. No context is given for when a named timezone lookup is preferred over UTC or zone enumeration.

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

C2.5/5.0
Disambiguation4/5

Most tools are clearly separate: URL parsing, robots inspection, time lookups, and JSON validation occupy distinct niches. The main confusions are citation vs normaliz-url, both URL inspection, and compatibility, whose classification purpose is vague.

Naming Consistency3/5

All names use kebab-case, but the parts of speech vary: normalize-url and validate-json are verb-object, while citation, timezone, and iana-zones are noun phrases. This makes the naming readable but not a consistent pattern.

Tool Count4/5

At 11 tools, the server is within the well-scoped range and no tool feels redundant. The scope is broad—URLs, HTTP, time, JSON—but the count itself is not excessive.

Completeness3/5

As a loose utility server, it offers a few operations per category rather than full coverage: time has current/lookup but no conversion, URL has inspection but no content fetch by design. Missing obvious helpers like URL comparison or timezone conversion, though the server likely aims to be minimal.