email_validate
Check email address validity by verifying format and DNS MX records to ensure deliverability and reduce bounce rates.
Instructions
Validate an email address (format + MX check) ($0.001)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Implementation Reference
- index.js:50-79 (handler)The general tool handler that executes API calls to IteraTools backend for various tools including email_validate.
async function callTool(endpoint, params) { const fetch = (await import('node-fetch')).default; const isGet = ['GET'].includes((TOOLS.find(t => t.endpoint === endpoint) || {}).method); const url = isGet ? `${BASE_URL}${endpoint}?${new URLSearchParams(params)}` : `${BASE_URL}${endpoint}`; const res = await fetch(url, { method: isGet ? 'GET' : 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${API_KEY}`, }, body: isGet ? undefined : JSON.stringify(params), }); const text = await res.text(); let data; try { data = JSON.parse(text); } catch { data = { raw: text }; } if (!res.ok) { if (res.status === 402) { throw new Error(`Insufficient credits. Add credits at https://iteratools.com. Cost: ${TOOLS.find(t=>t.endpoint===endpoint)?.price || 'see docs'}`); } throw new Error(`API error ${res.status}: ${text.substring(0, 200)}`); } return data; } - index.js:38-38 (registration)Registration of the 'email_validate' tool in the TOOLS array.
{ name: 'email_validate', description: 'Validate an email address (format + MX check)', inputSchema: { type: 'object', properties: { email: { type: 'string' } }, required: ['email'] }, endpoint: '/email/validate', price: '$0.001' },