ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
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-disify
Or

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

Stars4190
Views0
Updated2026-04-18
View Author Profile
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.