Skip to main content
Glama
agentspan-ai

MCP Test Server

by agentspan-ai

validation_is_ipv6

Check if a string is a valid IPv6 address. Use it to verify IPv6 formatting for network configuration or data validation.

Instructions

Check whether a string is a valid IPv6 address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden, and it discloses only the predicate itself. It does not state edge-case behavior for a validator (does '::ffff:192.0.2.1', a compressed form, or a zone-id like 'fe80::1%eth0' count as valid?), though as a pure side-effect-free check the risk of an incorrect call is low.

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?

A single well-formed sentence with the predicate and subject front-loaded and zero padding. Nothing could be removed without losing information.

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

Completeness4/5

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

An output schema exists, so return values need no explanation, and for a one-parameter pure validator the description covers the essential contract. It falls short only on undocumented input edge cases, a minor omission for this tool class.

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 0%, so the description must compensate; it does so only minimally by saying the input is 'a string', which corresponds to the single 'text' parameter but adds no constraints or format expectations. The parameter name and type are self-explanatory, so the practical gap is small rather than severe.

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?

States a specific verb ('Check') and a precisely bounded resource ('a valid IPv6 address'), leaving no ambiguity about the output semantics. The name plus description cleanly separate it from validation_is_ipv4/validation_is_email/validation_is_uuid in the sibling list without needing to name them.

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?

Usage is implied rather than stated: an agent can infer it should call this when it needs to validate IPv6 text. There is no explicit guidance on when to prefer it over validation_is_ipv4 or validation_matches_regex, and no note on input preconditions (whitespace, empty string, IPv4-mapped forms), which would matter in ambiguity cases.

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