check_phone
Pack: ipqualityscore · Endpoint: https://gateway.pipeworx.io/ipqualityscore/mcp
Phone number validation & fraud check. Confirms whether a number is valid and active, returns a 0-100 fraud score, and flags VOIP, prepaid, and risky numbers with line type, carrier, and region. Example: check_phone({ phone: “18007267864”, country: “US” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
phone | string | yes | Phone number to validate, e.g. “18007267864” or “+1 800 726 7864” |
country | string | no | Optional 2-letter ISO country code to improve parsing, e.g. “US”, “GB”. |
_apiKey | string | no | Optional — your own IPQualityScore API key for higher limits; omit to use the shared Pipeworx key. |
Example call
curl -X POST https://gateway.pipeworx.io/ipqualityscore/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"check_phone","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ipqualityscore": {
"url": "https://gateway.pipeworx.io/ipqualityscore/mcp"
}
}
}
See Getting Started for client-specific install steps.