e-mail-check-invalid-or-disposable-domain

e-mail-check-invalid-or-disposable-domain

3.5

The E-mail Check Invalid or Disposable Domain MCP server helps validate email addresses by identifying invalid and disposable domains.

The E-mail Check Invalid or Disposable Domain MCP server is designed to help you validate email addresses efficiently. It determines whether an email domain is valid and identifies temporary or disposable email addresses, which are often associated with spamming or trolling activities. This server provides a robust tool for ensuring email addresses are legitimate and not used for short-term or malicious purposes.

Features

  • Domain Validation: Quickly checks if an email domain is valid by examining MX records. This feature helps identify typos and non-responding mail servers.
  • Temporary/Disposable Email Detection: Identifies domains used for temporary or disposable emails. Such domains might be valid but are flagged for blocking due to their temporary nature.
  • Blacklist Integration: The server includes a built-in blacklist and multiple heuristic methods to detect temporary or disposable email domains.

MCP Tools

  • mailcheck: Checks if an email domain is valid or a disposable/temporary address.

Usage with Different Platforms

mcp

python
# Example script to use mailcheck tool
import requests

def check_email_domain(email):
    response = requests.post('http://mcp-server-url/check', json={'domain': email})
    return response.json()

email = 'example@disposablemail.com'
result = check_email_domain(email)
print(result)