Connection check
verified live · 27h ago
phone-validation
Validate phone numbers worldwide: carrier, line type, country, E.164. x402.
Tools
2
GitHub stars
—
Installs / wk
—
Licence
MIT
Transport
sse
Last checked
27h ago
Tools & capabilities
2 toolsRead from the running server on 27h ago.
phone_validate_batch
phones*
Use this when you need to validate multiple phone numbers at once (up to 50). Returns an array of validation results in JSON. Returns per number: 1. valid (boolean) 2. e164 format… Use this when you need to validate multiple phone numbers at once (up to 50). Returns an array of validation results in JSON. Returns per number: 1. valid (boolean) 2. e164 format 3. countryCode and countryName 4. carrier name 5. lineType (mobile/landline/voip/toll-free). Example output: {"results":[{"phone":"+14155551234","valid":true,"e164":"+14155551234","countryCode":"US","carrier":"T-Mobile","lineType":"mobile"},{"phone":"invalid","valid":false}],"total":2,"validCount":1} Use this FOR bulk CRM cleaning, importing contact lists, deduplication pipelines, and batch lead validation. Do NOT use for single numbers -- use phone_validate_number instead. Do NOT use for SMS capability -- use sms_validate_number instead.
phone_validate_number
phone*