Skip to main content
Glama

iban_validate

Validates an IBAN's length for its issuing country (per the SWIFT IBAN registry) and its mod-97 checksum. Does not decompose the BBAN into a bank code/account number or resolve a BIC.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYesidentifier or value to check

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
validYes
reasonNo

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description fully describes the tool's behavior: it validates specific criteria and does not perform other operations. It implicitly communicates non-destructive nature via 'validates'. Could be more explicit about side effects (none), but adequate.

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 sentences, front-loaded with action. No redundant or vague language. Every word contributes to clarity. Second sentence efficiently states exclusions. Perfectly sized.

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

Completeness5/5

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

Given the presence of an output schema (not shown), the description need not detail return values. It covers the validation logic (length and checksum) and explicitly states what is not done. For a simple validation tool with one input, this is complete and sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter 'value' has a generic schema description ('identifier or value to check'). The tool description adds essential meaning by specifying that the value is an IBAN string, and that validation checks length and checksum. This compensates for the schema's lack of specificity.

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?

Clearly states the tool validates an IBAN's length and mod-97 checksum, and explicitly distinguishes from decomposition and BIC resolution. Differentiates from sibling tools like ean_validate, isbn_validate, and swiftbic_validate by specifying IBAN-specific validation.

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

Usage Guidelines4/5

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

Provides clear context: validates length and checksum, but does not decompose or resolve BIC. This implies when to use (when IBAN format validation is needed) and when not (when further decomposition is needed). Lacks explicit naming of alternatives but is sufficient for decision-making.

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

Each tool validates a completely distinct type of identifier (barcodes, IBANs, ISBNs, Luhn-based numbers, SWIFT/BIC codes, and EU VAT numbers). There is no overlap in purpose, and descriptions clearly differentiate the specific format and algorithm used.

Naming Consistency5/5

All six tools follow an identical naming pattern: the lowercase identifier name followed by '_validate'. This consistent noun_verb structure makes it easy for an agent to predict the tool name for any identifier type.

Tool Count5/5

With six tools covering the most common checksum-based identifiers (barcodes, IBANs, ISBNs, payment cards, SWIFT/BIC, EU VAT), the server is well-scoped. Each tool serves a clear purpose without unnecessary redundancy or excessive complexity.

Completeness5/5

The tool set covers the major standardized identifiers that rely on checksums or structural validation. While additional identifiers like VIN or SSN could be added, the current selection represents a natural and comprehensive set for a 'Checksum Validator' server.

Resources