Skills mailcheck-email-verification
Email verification skill for MailCheck API - verify emails, bulk processing, authenticity analysis
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bnuyts/mailcheck-email-verification" ~/.claude/skills/openclaw-skills-mailcheck-email-verification && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bnuyts/mailcheck-email-verification" ~/.openclaw/skills/openclaw-skills-mailcheck-email-verification && rm -rf "$T"
manifest:
skills/bnuyts/mailcheck-email-verification/SKILL.mdsource content
MailCheck Email Verification
Verify email addresses with the MailCheck API - comprehensive email validation with syntax, disposable, DNS, and SMTP checks.
Features
- Single Email Verification - Verify one email at a time
- Bulk Verification - Verify up to 100 emails in one request
- Authenticity Analysis - Detect phishing, spoofing, and email fraud
- Risk Scoring - 0-100 score with risk level (low/medium/high)
Commands
email-verify
- Verify single email
email-verifyVerifies a single email address.
Parameters:
(required): Email address to verifyemail
(optional): MailCheck API key (falls back toapi_key
env var)MAILCHECK_API_KEY
Example:
email-verify email="user@example.com" api_key="sk_live_..."
email-bulk-verify
- Bulk verification
email-bulk-verifyVerifies up to 100 email addresses in one request.
Parameters:
(required): Array of email addressesemails
(optional): MailCheck API keyapi_key
Example:
email-bulk-verify emails="[user1@example.com, user2@gmail.com]" api_key="sk_live_..."
email-auth-verify
- Email authenticity analysis
email-auth-verifyAnalyzes email headers for spoofing, phishing, and CEO fraud.
Parameters:
(required): Email headers to analyzeheaders
(optional): Domains for lookalike detectiontrusted_domains
(optional): MailCheck API keyapi_key
Example:
email-auth-verify headers="From: sender@example.com\nReceived: ..." trusted_domains="[company.com]"
Environment Variables
Set
MAILCHECK_API_KEY with your MailCheck API key to avoid passing it on every command.
Installation
This skill is available on ClawHub.
clawhub install mailcheck-email-verification
API Reference
See full API documentation: https://api.mailcheck.dev/docs
Repository
Source code: https://github.com/bnuyts/mailcheck-skill
License
MIT