Skip to main content
Glama

Timezone Clock

validate-json

Check whether a body is valid JSON. The body is discarded.

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

B3.3/5.0
Behavior3/5

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

With no annotations, the description must carry safety/behavior information; it does usefully disclose that the body is discarded, implying no persistence or side effects. It does not describe error behavior or return shape, but for a pure validation check the discard statement provides meaningful transparency.

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?

Two short sentences, with the core action and the key side-effect statement front-loaded; no unnecessary words.

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

Completeness3/5

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

For a simple validator, the description is minimally sufficient and the discard behavior is a useful extra. However, with no output schema or annotations, it does not state what the tool returns/raises on valid vs invalid JSON, and it leaves unclear whether url/host/zone parameters have any role.

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

Parameters3/5

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

Schema coverage is 100%, so the four parameters are already described in the input schema; the description adds no new parameter-level meaning. The json parameter's schema description ('JSON text to validate; discarded after the check') actually carries most of the semantic weight.

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

Purpose4/5

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

The opening sentence names a specific verb ('check') and resource ('whether a body is valid JSON'), so an agent can tell this is a JSON-validation utility and not one of the URL/timezone sibling tools. It doesn't explicitly map 'body' to the json parameter, but the purpose is unmistakable.

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?

No guidance is given about when to prefer validate-json or how it differs from sibling tools. The description implies a simple validation use case but states no context, prerequisites, or exclusions.

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.3/5.0
Disambiguation2/5

Several tools overlap around URL and HTTP inspection (citation, normalize-url, inspect-robots, compatibility), making it hard to know which to select for a given task. Timezone tools are clearer but the URL-related tools have fuzzy boundaries.

Naming Consistency2/5

Names mix noun-style labels (citation, compatibility, timezone) with verb-style labels (normalize-url, validate-json, inspect-robots), and some names like citation and compatibility are vague. Hyphenation is consistent, but the overall naming pattern is not.

Tool Count3/5

Ten tools is a reasonable number, but the server is named 'Timezone Clock' while most tools are URL/HTTP utilities. The count feels padded and unfocused relative to the apparent purpose.

Completeness2/5

The timezone surface lacks common operations like converting between zones or getting offset details, while the URL/HTTP side is a grab-bag of partial capabilities. The tool set does not coherently cover either apparent domain.