Skip to main content
Glama

UUID Mint

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.4/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral disclosure burden. It does add one useful behavior—'the body is discarded'—indicating no persistence. However, it does not disclose what the tool returns, whether it throws an error, or what the success/failure signal looks like.

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?

The description is a single sentence with no filler. The core operation is front-loaded, and the note that the body is discarded is relevant and concise.

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

Completeness2/5

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

The definition is too sparse for a tool with four parameters, no annotations, and no output schema. It does not explain which parameter supplies the body, what the result format is, or how to handle the three seemingly unrelated parameters. An agent cannot reliably construct a correct call from this description alone.

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 description coverage is 100%, so the baseline is 3. The `json` parameter description confirms it is the JSON text to validate, but the tool description says 'body' without linking to that parameter. The unrelated `url`, `host`, and `zone` parameters add confusion and are not reconciled with the described behavior.

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 description clearly names a validation operation on a JSON body, which distinguishes it from the sibling tools such as normalize-url, timezone, and uuid-v4. However, it never maps 'body' to the schema's `json` parameter, leaving some ambiguity about the actual input.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool's purpose: use it to check if a body is valid JSON. It provides no explicit when-to-use guidance, prerequisites, or comparison to alternatives, but the sibling list contains no other JSON validator, so the omission is not critical.

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.8/5.0
Disambiguation3/5

Most tools have distinct outputs, but citation and normalize-url both return URL components and overlap on host/scheme. The time-related tools (iana-zones, timezone, utc-time) share a domain, and compatibility is vague enough that an agent may struggle to select it correctly.

Naming Consistency3/5

All names are lowercase and kebab-case, which gives a consistent visual style. However, the naming mixes noun labels like citation and timezone with verb phrases like inspect-robots and validate-json, so there is no uniform verb_noun pattern.

Tool Count3/5

Eleven tools is a reasonable count, but the server is named 'UUID Mint' and contains a loose collection of URL, time, HTTP, JSON, and UUID utilities. The count is not excessive, but the tools do not form a cohesive, well-scoped set.

Completeness2/5

The tool surface is a grab bag with no coherent domain, so common workflows are only partially covered. For example, there is UUID generation but no UUID validation, timezone lookup but no timezone conversion, and URL inspection but no full URL parsing or content retrieval.