Disify
live UtilitiesDetect disposable and invalid email addresses via Disify
2 tools
0ms auth
free tier 50 calls/day
Tools
validate_email
required: email Validate an email address to check if it is properly formatted, has valid DNS, is disposable, or is an alias.
Parameters
Name Type Description
email req string The email address to validate. Try it
Response
check_domain
required: domain Check whether a domain is associated with disposable or temporary email services.
Parameters
Name Type Description
domain req string The domain name to check, e.g. "mailinator.com". Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/disify/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/disify/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"validate_email","arguments":{"email": "test@example.com"}}}'