validate_imei
Pack: imei · Endpoint: https://gateway.pipeworx.io/imei/mcp
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. Spaces/dashes ignored. Validates the number, not the device.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
imei | string | yes | A 15-digit IMEI or 16-digit IMEISV, e.g. “490154203237518”. |
Example call
Arguments
{
"imei": "490154203237518"
}
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":"validate_imei","arguments":{"imei":"490154203237518"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('validate_imei', {
"imei": "490154203237518"
});
More examples
{
"imei": "49 01 54203 237518"
}
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.