gtin_check_digit
Pack: gtin · Endpoint: https://gateway.pipeworx.io/gtin/mcp
Compute the mod-10 check digit for GTIN/EAN/UPC data digits (all digits EXCEPT the check digit). Use to generate or repair a barcode.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
data | string | yes | The data digits without the check digit, e.g. “400638133393”. |
Example call
curl -X POST https://gateway.pipeworx.io/gtin/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gtin_check_digit","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gtin": {
"url": "https://gateway.pipeworx.io/gtin/mcp"
}
}
}
See Getting Started for client-specific install steps.