← apished.com

INDIVIDUAL MCP TOOL

luhn_validate

Validates a numeric string against the Luhn (mod-10) checksum — payment card numbers, IMEI numbers, and similar identifiers.

apished.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://apished.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for luhn_validate and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests a financial action.

Parent server

apished.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.apished]
url = "https://apished.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "apished": {
      "type": "http",
      "url": "https://apished.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: apished
Remote MCP URL: https://apished.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "apished": {
      "url": "https://apished.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "apished": {
      "type": "http",
      "url": "https://apished.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "apished",
  "transport": "streamable-http",
  "url": "https://apished.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • datemath_add — Adds years/months/days to date.
  • datemath_age — Age in whole years as of asOf (optional, defaults to the current UTC date).
  • datemath_businessdays — Counts days in [from, to] (inclusive on both ends) whose weekday is in weekdays (default mon-fri) and which aren't in holidays.
  • datemath_dayofweek — Day of the week for date: both the weekday name and its ISO 8601 weekday number (1=Monday.
  • datemath_diff — Day difference between two YYYY-MM-DD dates: to minus from, in whole days.
  • datemath_leapyear — Checks whether year is a leap year in the Gregorian calendar.
  • ean_validate — Validates an 8-digit (EAN-8), 12-digit (UPC-A), 13-digit (EAN-13), or 14-digit (GTIN-14) barcode checksum: alternating weights 1 3 applied right-to-left, check digit is (10 - sum mod 10) mod 10.
  • email_validate — Checks value is a single, bare RFC 5322 email address — syntax only, not a deliverability check.