Server time
server_timeReturns the current server time (ISO 8601, UTC).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
server_timeReturns the current server time (ISO 8601, UTC).
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 full responsibility for behavior disclosure. It states exactly what the tool returns and in what format, implying a read-only operation with no side effects. This is sufficient for a simple clock tool.
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 a single sentence that is efficient and front-loaded with the core action, followed by the precise output format. There is no unnecessary information.
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?
For a parameterless tool with no output schema, the description still tells the agent exactly what to expect: current server time in ISO 8601 UTC. Nothing essential is missing for an agent to call 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 tool has zero parameters, so the schema already exhaustively covers all inputs. The description doesn't need to add parameter information, and the 0-parameter baseline of 4 applies.
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 clearly states the tool returns the current server time with the specific format and timezone (ISO 8601, UTC). This is distinct from sibling tools 'add' and 'echo', which obviously perform arithmetic and string echoing rather than a time lookup.
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 use case is clear: call when you need the current server time in UTC. No exclusions or alternatives are explicit, but the sibling tools are unrelated to time, so additional when-not guidance would add little value.
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.
Each tool performs a completely distinct operation: arithmetic, text echoing, and time retrieval. There is no overlap or ambiguity between them.
Two tools use imperative verbs (add, echo) while server_time is a noun phrase, creating a minor inconsistency. However, all names are short, readable, and follow a simple style.
With only three tools, the server is minimal but each tool serves a clear, separate purpose. The count is appropriate for a small utility server.
The tools are unrelated and there is no obvious missing operation for such a small utility set. However, the lack of a cohesive domain makes completeness difficult to fully assess.