Skip to main content
Glama
impossibleG

impossible-mcp

by impossibleG

Read server time

server-time

Get the current server time in ISO-8601 format to synchronize clients or validate timestamps without local clock reliance.

Instructions

Return the server's current time as an ISO-8601 value.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It accurately and simply conveys that this is a side-effect-free read returning a timestamp, and the ISO-8601 format specification adds useful precision. It does not state the timezone, but 'server's current time' is sufficiently explicit for a zero-parameter getter.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One sentence with no filler. The action, target, and output format are all included without redundancy, which is ideal for such a minimal tool.

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

Completeness5/5

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

For a stateless, parameterless read tool with no output schema, the description fully covers what an agent needs to know: what the tool returns and in what format. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the baseline is 4. The description adds the ISO-8601 format detail, which is the only meaningful semantic context an agent needs beyond the empty schema.

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

Purpose5/5

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

The description clearly states the verb ('Return') and the exact resource ('the server's current time') plus the output format ('ISO-8601'). This unambiguously distinguishes it from the sibling echo, which would return input rather than a clock value.

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 gives no guidance on when to use this tool versus alternatives, and it does not mention the sibling echo or any exclusions. For a simple getter this is less critical, but the dimension asks for explicit context and none is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools