Email Checker MCP Server
by ravinahp
verify_email
Copy
Verify an email address using the 2ip.me API.
Args:
email (str): The email address to verify
Returns:
str: "true" or "false" indicating if the email is valid
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"title": "Email",
"type": "string"
}
},
"required": [
"email"
],
"title": "verify_emailArguments",
"type": "object"
}