veriphone_verify
Pack: veriphone · Endpoint: https://gateway.pipeworx.io/veriphone/mcp
Validate a phone number and return whether it is valid, its line type (mobile/fixed_line/voip/etc), carrier, region, country, and canonical formats (E.164, international, local). Pass numbers in E.164 form (e.g. “+14155552671”); for local numbers supply default_country. Example: veriphone_verify({ phone: “+14155552671”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
phone | string | yes | Phone number to validate. Prefer E.164 format, e.g. “+14155552671”. Local numbers are allowed if default_country is supplied. |
default_country | string | no | Optional ISO-3166 alpha-2 country code (e.g. “US”, “GB”) used to interpret a number that has no leading ”+” country prefix. |
_apiKey | string | yes | Your Veriphone API key (free signup at https://veriphone.io/signup). |
Example call
Arguments
{
"phone": "+14155552671",
"_apiKey": "your-veriphone-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/veriphone/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"veriphone_verify","arguments":{"phone":"+14155552671","_apiKey":"your-veriphone-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('veriphone_verify', {
"phone": "+14155552671",
"_apiKey": "your-veriphone-api-key"
});
More examples
{
"phone": "02071838750",
"default_country": "GB",
"_apiKey": "your-veriphone-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"veriphone": {
"url": "https://gateway.pipeworx.io/veriphone/mcp"
}
}
}
See Getting Started for client-specific install steps.