Skip to main content
Glama

ULID shape check

normalize-url

Return origin, host, and path for a URL. Query and fragment are dropped.

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

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

With no annotations present, the description must carry the behavioral disclosure burden. It does disclose that query and fragment are dropped and what the return value contains, which is useful. But it says nothing about the semantics or side effects of the json and zone inputs, which the schema suggests are validated and discarded, nor about failure modes, so transparency is only partial.

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 terse sentences, front-loaded with the main action, then the dropping constraint. No filler or redundancy. The main deficiency is omission of scope, not wordiness.

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 description is complete only for the URL case, yet the schema shows four optional parameters with no output schema or annotations. It does not explain how the parameters interact, which input to choose when validating different types, or what happens with conflicting inputs. An agent lacks enough context to invoke the tool reliably for non-URL cases.

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 description adds some semantic context for url by stating the output components. However, it does little to clarify the roles of host, json, and zone, and the phrase 'return host' could be confused with the host input parameter. On balance it neither meaningfully enriches nor destroys the schema's parameter documentation.

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

Purpose3/5

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

The description uses a specific verb+resource ('Return origin, host, and path for a URL') and adds the normalization behavior of dropping query/fragment. However, the input schema exposes four unrelated optional parameters (url, host, json, zone), suggesting the tool also validates JSON and timezone names, which the description omits. This mismatch makes the tool's actual scope ambiguous and does not distinguish it from sibling tools.

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

Usage Guidelines1/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, and no exclusions. The URL-only description actively underrepresents the json/zone capabilities visible in the schema, so an agent needing JSON validation would not know this tool applies. The only implied use case, URL normalization, conflicts with the broader schema.

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

Several tools overlap around URL and request inspection: citation and normalize-url both return host/scheme, and status-catalog overlaps with citation's HTTP status output. The vague compatibility tool compounds the problem, though the time and format-validation tools are clearly distinct.

Naming Consistency3/5

All names use lowercase kebab-case, but the set mixes imperative verb-noun names (inspect-robots, normalize-url, validate-json) with noun-only or noun-noun names (citation, compatibility, timezone, ulid-shape). This is readable but not a consistent pattern.

Tool Count4/5

Eleven tools is within a reasonable range and each has a separable utility. The count itself is fine, but the server appears to have drifted from the 'ULID shape check' purpose into a general web/time/format utility bag.

Completeness3/5

As a privacy-focused inspection toolkit, it covers URL, domain, robots, time, status codes, ULID, and JSON shape checks. However, there are notable gaps such as missing common format validators (UUID, email), no URL encoding/decoding, and the compatibility tool feels like an unexplained dead end.