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 provided, the description carries the full burden of disclosing behavioral traits. It only states the output is a current UTC timestamp, but gives no information about output format, side effects, or edge cases. The presence of irrelevant parameters further obscures expected behavior.
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 extremely concise, which is a positive, but it lacks any structure or additional helpful context. It is a single phrase with no breakdown of behavior, parameters, or typical usage, so the conciseness comes at the cost of completeness.
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 the very low complexity of the intended tool, the description should fully cover it, but it fails to explain the irrelevant parameters or the output format. The presence of unrelated schema fields makes the tool definition contextually incomplete and confusing, preventing an agent from using it correctly.
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?
The input schema includes four parameters (url, host, json, zone) with descriptions that are clearly unrelated to returning the current UTC timestamp. These seem copied from other tools and create a stark mismatch with the stated purpose. The description adds no clarification, making the parameters misleading and likely to cause incorrect usage.
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?
The description 'Current UTC timestamp.' clearly states the tool's purpose with a specific verb-resource pairing. It is unambiguous and easily distinguishes from sibling tools like 'timezone' which likely converts timezones rather than returning the current UTC time.
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 offers no guidance on when to use this tool versus alternatives such as 'timezone' or other utilities. There is no mention of appropriate contexts, exclusions, or fallback conditions, leaving the agent to infer usage entirely from the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.