Skip to main content
Glama

UTC weekday 1-7

utc-time

Current UTC timestamp.

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.1/5.0
Behavior1/5

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

There are no annotations, so the description carries full behavioral disclosure burden. It only says 'Current UTC timestamp.' with no mention of return format, whether the zone parameter is honored, read-only nature, or any other behavior. The agent is left completely in the dark about what happens when called.

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 extremely concise, which is good, but it is too short to be useful. It is front-loaded but provides almost no information. It is not an example of tight, informative writing; it is just a phrase.

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

Completeness1/5

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

The tool has 4 optional parameters, no output schema, and no annotations. The description does not explain how to use the parameters, what the return value looks like, or how it differs from sibling tools. An agent cannot correctly invoke this tool based on this description alone.

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?

Schema description coverage is 100%, but the parameter descriptions (URL, host, JSON, zone) appear entirely unrelated to a UTC timestamp tool. The description adds no clarification about why these parameters exist or how they affect the output. An agent would be confused about what to pass. The description fails to compensate for the schema's irrelevance.

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 states the tool returns the current UTC timestamp, which is a clear purpose. However, it does not differentiate from sibling tools like 'timezone' or 'weekday-number', so an agent cannot easily know which to pick without further investigation.

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

Usage Guidelines1/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. The description does not mention any conditions, prerequisites, or exclusions, leaving the agent without routing information.

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.