Back to Registry View Author Profile
Official Verified
pipeworx-disify
Detect disposable and temporary email addresses — validate emails and check domains against known throwaway services
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/brucegutman/pipeworx-disifyOr
Disify — Disposable Email Detection
Is that email real or a throwaway? Disify checks email addresses and domains against a database of known disposable email services like Mailinator, Guerrilla Mail, and Temp Mail. Useful for form validation, anti-fraud, and user quality checks.
Tools
validate_email— Check if an email address is disposable or malformed. Returns format validity and disposable status.check_domain— Check if a domain is associated with disposable email services (e.g., "mailinator.com").
When to use
- Validating sign-up forms to block throwaway emails
- Screening lead generation forms for quality
- Checking if a domain in your user database is disposable
- Anti-abuse pipelines that need to flag temporary email usage
Example
curl -s -X POST https://gateway.pipeworx.io/disify/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"validate_email","arguments":{"email":"[email protected]"}}}'
{
"email": "[email protected]",
"format_valid": true,
"disposable": true,
"domain": "mailinator.com"
}
MCP config
{
"mcpServers": {
"pipeworx-disify": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/disify/mcp"]
}
}
}
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-brucegutman-pipeworx-disify": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.
Related Skills
pipeworx-colorapi
Color identification, scheme generation, and format conversion via TheColorAPI — hex, RGB, HSL, and CMYK
brucegutman 4190
pipeworx-poetry
Poetry MCP — PoetryDB API (free, no auth)
brucegutman 4190
Pipeworx Qrcode
Skill by brucegutman
brucegutman 4190
Pipeworx Rickmorty
Skill by brucegutman
brucegutman 4190
Pipeworx Sunrisesunset
Skill by brucegutman
brucegutman 4190