Skip to main content
Glama

EIN format check (US)

ein_format_check
Read-onlyIdempotent

Validate US Employer Identification Number FORMAT (NN-NNNNNNN). No public EIN checksum exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
einYesUS EIN, 9 digits; dashes/spaces allowed.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolNo
scopeNo
validYes
reasonYes
countryNo
normalizedNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "ein": "12-3456789"
      -  }
      -]New value: +[
      +  {
      +    "input": {
      +      "ein": "12-3456789"
      +    },
      +    "output": {
      +      "reason": "checksum valid",
      +      "valid": true
      +    }
      +  }
      +]
    • addedOutput schema / examples
      Added value: +[
      +  {
      +    "reason": "checksum valid",
      +    "valid": true
      +  }
      +]
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish read-only and idempotent behavior. The description adds an important limitation: only format validation is performed, with no checksum verification. This provides meaningful behavioral context beyond the annotations without contradicting them.

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?

One focused sentence conveys the action, scope, and key limitation. Every word earns its place, and the essential 'FORMAT only' point is front-loaded.

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?

For a one-parameter, read-only, idempotent tool with an output schema, the description sufficiently covers the behavior, scope, and limitation. No critical operational detail is missing.

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 schema has 100% coverage for the single 'ein' parameter, so the baseline is 3. The description's format pattern adds slight reinforcement but does not introduce semantics beyond what the schema already documents.

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 states a specific verb ('Validate'), a specific resource ('US Employer Identification Number'), and a precise scope ('FORMAT (NN-NNNNNNN)'). This clearly distinguishes it from the many sibling identifier-checking tools.

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?

The description makes clear this tool validates format only, and the phrase 'No public EIN checksum exists' explicitly warns the agent not to expect checksum/validity validation. It does not name alternatives or give an explicit 'use when' condition, but the use case is unambiguous.

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

A3.8/5.0
Disambiguation4/5

Each tool targets a distinct identifier type or on-chain data source, and composite wrappers like batch_validate and vendor_onboarding_pack are clearly labeled as batch operations. Minor confusion is possible among on-chain snapshot tools like balance_check, erc20_balance, and tx_activity, but the descriptions mostly resolve the boundaries.

Naming Consistency4/5

Validators largely follow a predictable *_check suffix, with occasional format/validate variants like ein_format_check and company_number_format. On-chain and rental tools break the pattern with descriptive nouns such as block_info, tx_activity, and rental_verdict, so the naming is not perfectly uniform but remains navigable.

Tool Count3/5

23 tools is a heavy surface for one server, spanning three distinct clusters: identifier validation, Base-chain inspection, and rental due diligence. Each tool has a clear purpose, but the set feels broad and could be split into smaller purpose-focused servers.

Completeness4/5

The identifier validation surface is well covered across many international formats and includes useful batch/package workflows. Minor gaps exist, such as no registry existence lookup for UK company numbers and no generic transaction-status tool, but the core due-diligence workflows are not left with dead ends.

Resources