Skip to main content
Glama

Unix epoch seconds

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.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and 'Current UTC timestamp' discloses only that the operation is a benign read. It reveals nothing about return format, timezone resolution, or why the schema exposes url, host, json, and zone parameters, which makes the actual behavior opaque and potentially misleading.

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 a single short phrase with no wasted words and the key output (UTC timestamp) is front-loaded. It is slightly under-specified, but as a concise statement it is efficient and readable.

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 description is severely inadequate for an agent to invoke this tool correctly: it claims a no-argument timestamp operation while the schema presents four unrelated optional parameters, there is no output schema, and no guidance on parameter relevance. The mismatch between the description and schema makes correct usage essentially unknowable.

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%, which would normally warrant a baseline of 3, but the parameter descriptions describe a URL/timezone/JSON-validation tool, not a timestamp tool. The description adds zero parameter context and fails to reconcile the four unrelated optional parameters with the stated purpose, leaving an agent unable to determine whether any of them affect the result.

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

Purpose3/5

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

The description 'Current UTC timestamp' states a specific verb and resource, so the intended behavior is nominally clear. However, it does not distinguish itself from the sibling tool 'unix-now', which likely serves a nearly identical purpose, and it is inconsistent with the input schema, which lists url, host, json, and zone parameters that have nothing to do with reading a UTC timestamp.

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?

The description provides no guidance on when to use this tool versus the closely related sibling 'unix-now', nor any mention of use cases, prerequisites, or exclusions. An agent must guess which timestamp tool is appropriate.

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.9/5.0
Disambiguation3/5

Several tools fall into overlapping clusters: citation and normalize-url both process URLs, while timezone, utc-time, and unix-now all report current time. The descriptions clarify the exact output of each, but an agent could still struggle to pick between them without careful reading.

Naming Consistency3/5

All names are lowercase and hyphenated, giving a consistent visual style. However, the pattern mixes noun phrases (citation, status-catalog, unix-now) with verb-noun imperatives (inspect-robots, normalize-url, validate-json), so there is no single predictable naming convention.

Tool Count4/5

Eleven tools is within the typical well-scoped range and each utility has a narrow function. The count itself is reasonable, although the server name suggests a time-focused purpose while many tools are actually web/URL utilities.

Completeness3/5

The set covers common stateless operations: current time, timezone lookups, URL inspection, robots, and JSON validation. Notable gaps include epoch-to-human timestamp conversion and a way to fetch or inspect HTTP response details beyond status, which would be expected in a general utility server.