IMEI Validation
live UtilityValidate IMEI (15-digit, Luhn) & IMEISV (16-digit) device identifiers offline (keyless), and break out the TAC / serial / check digit. Number only, no device lookup.
2 tools
0ms auth
free tier 50 calls/day
Tools
validate_imei Validate an IMEI (15 digits, with Luhn check) or IMEISV (16 digits, no check). Keyless/offline. Returns validity and the parts: TAC (Type Allocation Code, first 8), serial number, and check digit. Spa
No parameters required.
Try it
Response
imei_check_digit Compute the Luhn check digit for the first 14 digits of an IMEI (use to complete or repair an IMEI).
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/imei/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/imei/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"validate_imei","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("validate_imei", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("validate imei (15-digit, luhn) & imeisv (16-digit) device identifiers offline (keyless), and break out the tac / serial / check digit");