utc-time
Current UTC timestamp.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | HTTPS URL to normalize or cite | |
| host | No | Public hostname | |
| json | No | JSON text to validate; discarded after the check | |
| zone | No | IANA timezone name |
Current UTC timestamp.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | HTTPS URL to normalize or cite | |
| host | No | Public hostname | |
| json | No | JSON text to validate; discarded after the check | |
| zone | No | IANA timezone name |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, but it only implies a read-only, side-effect-free call without disclosing what happens if only a url, host, or zone parameter is provided. The most important behavioral fact — that the tool seems to accept unrelated parameters despite being a simple timestamp read — is left entirely unexplained.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is undeniably short, but under-specification is not conciseness. A four-word phrase cannot cover the behavior of a tool whose schema exposes four parameters, so brevity here comes at the expense of necessary content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given a 4-parameter schema, no output schema, and no annotations, a four-word description is completely inadequate. There is no explanation of which parameters apply, why they exist on a UTC-time tool, or what the return value looks like, leaving an agent unable to call the tool correctly with confidence.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3 even though the description adds no parameter semantics. However, the description actually undermines the schema: it suggests the tool takes no meaningful input, while the schema lists four well-documented optional parameters with no explanation of their relevance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
"Current UTC timestamp" is essentially a tautology of the tool name utc-time, restating the name rather than adding a verb, resource, or differentiation from the timezone sibling. It does communicate that the tool reports the current UTC time, but without a verb phrase or scope it reads as a label rather than an explanation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance about when to call this tool versus the timezone sibling, nor any context about how it behaves with the four optional parameters. There is no misleading guidance, just an absence of any usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools have distinct outputs, but the URL-related tools (citation, normalize-url, domain-shape) and time-related tools (utc-time, timezone, iana-zones) form overlapping clusters that an agent could misselect. Descriptions clarify the differences, but the boundaries are not immediately obvious.
All names use lowercase hyphenation, but the set mixes imperative verb_noun names (inspect-robots, normalize-url, validate-json) with noun/adjective names (citation, compatibility, timezone, base64-ok). This is readable but not a consistent naming pattern.
Eleven tools is a reasonable size for a general-purpose utility server and none seem redundant enough to cut. A few could be consolidated, such as timezone and utc-time, but the count is not excessive.
The server covers several utility categories, including URL analysis, time, JSON validation, HTTP status, and base64, but has noticeable gaps such as no base64 decode, no timezone conversion, and no URL encoding/decoding. These missing operations limit what an agent can accomplish without another server.