imei_check_digit

Pack: imei · Endpoint: https://gateway.pipeworx.io/imei/mcp

Compute the Luhn check digit for the first 14 digits of an IMEI (use to complete or repair an IMEI).

Parameters

NameTypeRequiredDescription
digitsstringyesThe first 14 digits (no check digit).

Example call

Arguments

{
  "digits": "49015420323751"
}

curl

curl -X POST https://gateway.pipeworx.io/imei/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"imei_check_digit","arguments":{"digits":"49015420323751"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('imei_check_digit', {
  "digits": "49015420323751"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "imei": {
      "url": "https://gateway.pipeworx.io/imei/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026