Skip to main content

Verify Email

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTghl.verify_email

Verify email address deliverability and get risk assessment. Charges will be deducted from the specified location wallet.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-verify-email-example",
"method": "tools/call",
"params": {
"name": "ghl.verify_email",
"arguments": {
"locationId": "locationId_123",
"type": "email",
"verify": "verify_example",
"tenantId": "tenantId_123",
"strictTenant": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"tenantId": {
"type": "string"
},
"strictTenant": {
"type": "boolean"
},
"locationId": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"email",
"contact"
]
},
"verify": {
"type": "string"
}
},
"required": [
"locationId",
"type",
"verify"
]
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-verify-email-example",
"method": "tools/call",
"params": {
"name": "ghl.verify_email",
"arguments": {
"locationId": "locationId_123",
"type": "email",
"verify": "verify_example",
"tenantId": "tenantId_123",
"strictTenant": false
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ghl.verify_email executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}