check_luhn
Pack: creditcard · Endpoint: https://gateway.pipeworx.io/creditcard/mcp
Run a raw Luhn (mod-10) check-digit validation on any numeric string (cards, IMEI, national IDs, etc.). Returns whether the check digit is valid and what the correct check digit would be.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
number | string | yes | A numeric string to Luhn-check. |
Example call
curl -X POST https://gateway.pipeworx.io/creditcard/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"check_luhn","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"creditcard": {
"url": "https://gateway.pipeworx.io/creditcard/mcp"
}
}
}
See Getting Started for client-specific install steps.