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
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":{}}}'
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.