Detect disposable and temporary email addresses — validate emails and check domains against known throwaway services
Is that email real or a throwaway? Disify checks email addresses and domains against a database of known disposable email services like Mailinator, Guerrilla Mail, and Temp Mail. Useful for form validation, anti-fraud, and user quality checks.
validate_email — Check if an email address is disposable or malformed. Returns format validity and disposable status.check_domain — Check if a domain is associated with disposable email services (e.g., "mailinator.com").curl -s -X POST https://gateway.pipeworx.io/disify/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_email","arguments":{"email":"[email protected]"}}}'
{
"email": "[email protected]",
"format_valid": true,
"disposable": true,
"domain": "mailinator.com"
}
{
"mcpServers": {
"pipeworx-disify": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/disify/mcp"]
}
}
}