Veriphone
live CommunicationsDeveloper ToolsVeriphone MCP — phone-number validation with type (mobile/fixed/VoIP), carrier, and region across 240+ countries, plus quota check. BYO Veriphone API key.
Tools
veriphone_verify 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
No parameters required.
Try it
veriphone_credits Check the remaining verification credits / quota for your Veriphone API key — usage counter, plan limit, and pay-as-you-go balance. Example: veriphone_credits({ _apiKey: "your-key" })
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/veriphone/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/veriphone/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"veriphone_verify","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("veriphone_verify", {}); // Or ask in plain English:
const answer = await px.ask("veriphone mcp — phone-number validation with type (mobile/fixed/voip), carrier, and region across 240+ countries, plus quota check"); Related packs
Other Pipeworx packs in the same categories (Communications, Developer Tools):