Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Check Digits

REMOTE · CHECK-DIGITS.TOOLSTOP.DEV · 2 COMPONENTS · SCANNED AUG 13

Catch a mistyped barcode, ISBN, VIN, NPI or LEI before a bad identifier corrupts a record.

58 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. How we score →

Endpoint Security46
Transport & Reachability100
Schema Quality & AI Usability66
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 920 tokens (~306/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management20
  • Stability observed for 6 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities60
  • Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28. See how to fix → Fail
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

remote · check-digits.toolstop.dev

# add to Claude Code
claude mcp add --transport http dev-toolstop-check-digits https://check-digits.toolstop.dev/
# ~/.codex/config.toml
[mcp_servers.dev-toolstop-check-digits]
url = "https://check-digits.toolstop.dev/"
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-toolstop-check-digits": {
      "type": "remote",
      "url": "https://check-digits.toolstop.dev/",
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add dev-toolstop-check-digits --url https://check-digits.toolstop.dev/ --transport streamable-http
# ~/.hermes/config.yaml
mcp_servers:
  dev-toolstop-check-digits:
    url: "https://check-digits.toolstop.dev/"
// mcp.json
{
  "mcpServers": {
    "dev-toolstop-check-digits": {
      "type": "http",
      "url": "https://check-digits.toolstop.dev/"
    }
  }
}

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 13 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

  • 11 Aug 26 +1
    • HTTPS: unverified → fail security
    • The server rewrote its instructions, which are the text every model session reads security
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
    • Server version: 0.2.0 → 0.2.2 functional
  • 10 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

  • 8 Aug 26 +1
    • Stability: unverified → 0.03 functional
  • 7 Aug 26 54

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 13 Aug 2026 · Probed https://check-digits.toolstop.dev

TLS valid

Negotiated TLS 1.3 with TLS_AES_128_GCM_SHA256 .

Subject Issuer Valid from Valid until Key Signature Serial
CN=toolstop.dev CN=WE1,O=Google Trust Services,C=US 1 Aug 2026 30 Oct 2026 ECDSA 256 ECDSA-SHA256 9bad71910ffe857e0e8808a3931ee931
SANs: toolstop.dev, check-digits.toolstop.dev, *.check-digits.toolstop.dev
CN=WE1,O=Google Trust Services,C=US (CA) CN=GTS Root R4,O=Google Trust Services LLC,C=US 13 Dec 2023 20 Feb 2029 ECDSA 256 ECDSA-SHA384 7ff31977972c224a76155d13b6d685e3
CN=GTS Root R4,O=Google Trust Services LLC,C=US (CA) CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE 15 Nov 2023 28 Jan 2028 ECDSA 384 SHA256-RSA 7fe530bf331343bedd821610493d8a1b
DNSSEC insecure

Validation of check-digits.toolstop.dev. Not signed

Zone DS Keys Algorithms Outcome
. trust_anchor 20326, 38696 8, 8 Verified
dev. present 60074 8 Verified
toolstop.dev. absent Unsigned (proven) parent-signed NSEC/NSEC3 proves an unsigned delegation
Authentication No authorisation required

The endpoint answered without asking for a token. Anyone who knows the URL can reach it.

Result No authorisation required
HTTP status 200
Transports 2 probes
Transport URL Outcome Status Location
streamable-http https://check-digits.toolstop.dev Verified 200
http (plaintext) http://check-digits.toolstop.dev Served over HTTP 200
MCP tools · 3 exposed · ~584 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
compute_luhn_digit ~169

Given digits with the final check digit omitted, return the one that completes them. US healthcare NPIs and securities ISINs use the Luhn formula. Use it to build valid test fixtures, to recover a last digit that was lost or illegible, or to check an implementation against a reference. To test a number you already have in full, use validate_identifier instead. Input must reduce to digits only once spaces and dashes are stripped; anything else is an error. Payment cards also use Luhn, and are deliberately out of scope here: do not pass card digits, partial or complete. This constructs a well-formed number and nothing more: it does not create, reserve or verify a real provider or security.

NameTypeReqDescription
partialstringyesDigits excluding the final check digit.
NameTypeReqDescription
checkDigitstringyesThe single digit that completes a Luhn-valid string.
partialstringyesThe input digits, echoed back.

No examples provided.

identify_format ~169

Identify a bare number whose type was never recorded. Tests it against every supported format and reports which ones its check digit satisfies. Use it for an unlabeled spreadsheet column, a value pulled out of a log line or a scanned document, or any number handed over without being named. Reports every format that matches rather than choosing between them. Several matches is normal and does not mean the answer is unclear: some formats are subsets of others, so every ISBN-13 is also a valid EAN-13, and a short value can satisfy two unrelated formats by chance. Read one match as strong evidence and several as a set to narrow from context. As with validation, a match means the arithmetic is consistent, not that the identifier is registered or real.

NameTypeReqDescription
valuestringyesThe identifier to classify.
NameTypeReqDescription
inputstringyesThe normalized input that was tested.
matchedbooleanyesWhether any supported format matched.
matchesarrayyesEvery format whose check digit the input satisfies, in registry order. Each entry carries `kind` plus the same format-specific fields validate_identifier returns for that format, such as `country` fo…

No examples provided.

validate_identifier ~246

Verify a number when you already know what it is supposed to be. Use this whenever someone gives you a product barcode (GTIN, UPC or EAN), a book number (ISBN-10 or ISBN-13), a vehicle VIN, a US healthcare provider NPI, a security ISIN, or a legal entity LEI, and acting on a wrong one would cost something: a bounced claim, a rejected listing, a record that quietly corrupts a dataset. Every supported format is a public identifier. Bank accounts, IBANs, routing numbers and payment cards are not supported and must not be sent. Returns whether the checksum passes and, when it fails, the specific reason. If you do not already know the format, call identify_format first rather than guessing a `kind`, since a valid identifier checked against the wrong format comes back invalid. A passing checksum proves only that the digits are internally consistent: it does not mean the book, product, vehicle or provider exists, is active, or belongs to any particular person.

NameTypeReqDescription
kindstringyesWhich identifier format to validate against.
valuestringyesThe identifier to check. Spaces and dashes are ignored.
NameTypeReqDescription
actualCheckDigitstringThe digit the VIN actually carries at position 9. VIN only.
codestringBounded reason the check failed. Absent when valid.
countrystringISO country code parsed from the identifier. ISIN only.
expectedCheckDigitstringThe digit a VIN should carry at position 9. VIN only.
normalizedstringThe input with spaces and dashes removed, upper-cased.
reasonstringHuman-readable detail on the failure. Absent when valid.
validbooleanyesWhether the check digit is arithmetically consistent.
widthstringThe resolved width of a GTIN. GTIN input only.

No examples provided.