Skip to main content
Glama

Hex color to RGB

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

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the body is discarded, but does not disclose return values, error behavior, whether a network call is involved, or how the other parameters (url, host, zone) are treated.

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 only two sentences, with the purpose stated first and the side-effect second. There is no redundant or irrelevant wording, making it appropriately sized and easy to parse.

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?

For a tool with four optional parameters, no output schema, and no annotations, this description is insufficient. It does not explain how to invoke the tool correctly, what url/host/zone are for, or what result the agent should expect after validation.

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 even though the description adds no parameter detail. The description fails to clarify why url, host, and zone exist, and it uses 'body' without explicitly mapping to the `json` parameter, but the schema itself provides individual parameter descriptions.

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 states a clear action ('Check whether a body is valid JSON') and a specific resource. It is not a tautology and is easy to understand. However, it does not distinguish this tool from sibling tools like normalize-json or explain that the 'body' refers to the `json` parameter, so it lacks sibling differentiation.

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?

There is no guidance on when to use this tool versus alternatives, no exclusions, and no mention of prerequisites. An agent gets no help choosing between validate-json and related tools such as normalize-json or xml-to-json.

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

Several tools overlap in the URL/HTTP space, especially citation and normalize-url both returning host/scheme information, with inspect-robots and status-catalog adding to the confusion. The timezone tools are distinct, but compatibility is too vague to place, and the overall set makes tool selection ambiguous.

Naming Consistency2/5

All names are lowercase and hyphenated, but the semantic pattern is inconsistent: some are verb-object commands like normalize-url and validate-json, while others are bare nouns like citation and timezone, or noun phrases like status-catalog and iana-zones. There is no consistent verb_noun convention or recognizable family pattern.

Tool Count2/5

For a server advertised as 'Hex color to RGB,' 11 tools is far more than needed, and only hex-rgb actually matches that purpose. While 11 is not an extreme number in general, the unrelated utilities make the server feel bloated and mis-scoped.

Completeness2/5

The set has no coherent domain to assess against, spanning URL parsing, HTTP status, timezones, JSON validation, robots.txt, and color conversion without covering any one area deeply. For the stated hex-to-RGB purpose it is technically complete, but for the apparent mixed utility scope there are clear gaps such as timezone conversion or URL encoding.