Skip to main content
Glama

uuid_validate

Check whether a string is a well-formed UUID and, when recognizable, report its version and variant so you can accept or reject identifier inputs confidently.

Use when:

  • Is this string a valid UUID?

  • What version and variant is this UUID?

  • Validate a UUID before using it as a primary key or request id

Do not use when:

  • Generate a new UUID

  • Validate ISBNs or other non-UUID identifiers (use isbn_validate)

  • Validate JSON structure (use json_validate)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYesUUID candidate string

TDQS

A4.4/5.0
Behavior4/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 states the core behavior and includes a useful caveat: 'when recognizable' regarding version and variant reporting, indicating that the tool may not always be able to determine these. However, it does not disclose the return format (e.g., boolean, object) or edge-case handling (e.g., nil UUID), which leaves some ambiguity. Still, the provided behavioral context is honest and non-misleading, warranting a score above 3.

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 compact and highly structured. The opening sentence states the core purpose, followed by concise bullet-point lists for use and non-use cases. Every sentence serves a purpose, with no unnecessary elaboration or repetition. It is front-loaded and immediately actionable, ideal for an agent scanning tool descriptions.

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?

This is a simple single-parameter validation tool with no output schema. The description covers the tool's purpose, usage scenarios, and exclusions, which is largely complete. The main gap is the lack of explicit return-value details (e.g., does it return a simple boolean or an object with version/variant?). However, given the tool's low complexity and the richness of the rest of the description, it is adequately complete for effective selection and invocation.

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?

The input schema has 100% coverage for the single parameter 'value' with description 'UUID candidate string'. The description adds general context about well-formedness and version/variant but does not specify format details such as case sensitivity or canonical form beyond what the schema implies. Given the high schema coverage, the description's marginal contribution is sufficient for a baseline score of 3.

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?

The description opens with a specific action: 'Check whether a string is a well-formed UUID and, when recognizable, report its version and variant.' This clearly identifies the resource (UUID strings) and the operations (validation + version/variant reporting). It also implicitly distinguishes itself from sibling validation tools like isbn_validate and json_validate by the explicit exclusions in the 'Do not use when' section.

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

Usage Guidelines5/5

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

The description includes dedicated 'Use when' and 'Do not use when' sections. The 'Use when' section gives concrete example questions and contexts (validating a UUID before using it as a primary key). The 'Do not use when' section explicitly names alternatives (isbn_validate, json_validate) and states when generation is not appropriate. This is exactly the level of guidance expected.

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

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear use cases and explicit 'Do not use when' guidance preventing confusion. For example, base64_decode and url_decode handle different encoding schemes, while timestamp_convert and timezone_convert address separate time operations.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern (e.g., base64_decode, country_lookup, uuid_validate). While verbs vary (decode, encode, lookup, validate, convert), the naming format is uniform and predictable.

Tool Count4/5

The 18-tool set is slightly above the typical 3-15 range, but the breadth is justified by the server's purpose as a general-purpose utility toolkit. Each tool earns its place, and the count does not feel overwhelming or redundant.

Completeness4/5

The toolkit covers encoding/decoding, validation, lookups, and conversions across common developer needs. Minor gaps exist, such as no UUID generation tool to complement uuid_validate, and no HTML entity encoding/decoding, but these are not critical omissions for the stated utility scope.