HTTP/1.1 402 PAYMENT REQUIRED agent402.base.eth · BASE · SOLANA · POLYGON · ARBITRUM · STELLAR · ROBINHOOD · USDC · USDG

Validator suite

Validate common identifiers in one call: ISBN (book), IBAN (bank account), and credit card number (Luhn check).

When to use this pack

An agent is processing form inputs or imported data and needs to validate multiple identifier formats at once — catches typos and formatting errors before they reach a database or payment processor.

Tools in this pack

Workflow

  1. Validate a known-good ISBN with isbn-validate — checks format and check digit for ISBN-10 and ISBN-13.
  2. Validate the IBAN with iban-validate — checks country code, length, and IBAN check digits.
  3. Validate the card number with card-validate — Luhn algorithm check plus card network detection (Visa, Mastercard, etc.).

Run it in Claude

claude mcp add agent402 -s user -- npx -y agent402-mcp@latest

Then paste this prompt into Claude:

Validate identifiers using Agent402: (1) isbn-validate {isbn:"978-3-16-148410-0"} — check ISBN. (2) iban-validate {iban:"DE89370400440532013000"} — check IBAN. (3) card-validate {number:"4242424242424242"} — Luhn check. Return {isbn, iban, card} with valid/invalid + details.

← All skill packs