Utilities
Data source: Cloudflare DNS, curated lists
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/email-validation/
claude_desktop_config.json
{
"mcpServers": {
"gnist-email-validation": {
"url": "https://context.gnist.ai/mcp/email-validation/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/email-validation/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "validate_email", "arguments": {"email": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/email-validation/
3 endpoints available:
GET /rest/email-validation/validate_emailGET /rest/email-validation/validate_email_batchGET /rest/email-validation/report_feedback
Shell
curl "https://context.gnist.ai/rest/email-validation/validate_email?email=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/email-validation/validate_email",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"email": "example"
},
)
print(resp.json())
Command Line
Command
gc email-validation
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
validate_emailValidate an email address — checks format, MX records, disposable/role detection.
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | required |
validate_email_batchValidate multiple email addresses at once (max 50).
| Parameter | Type | Required | Description |
|---|---|---|---|
emails | string | required |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |