Disify
liveSecurityDeveloperDetect disposable and invalid email addresses via Disify. Bring your own Disify API key (_apiKey) — the keyless anonymous quota is shared and usually spent.
Disify works without a key until the shared anonymous daily quota runs out, which it usually has — every Pipeworx caller shares one egress. Pass your own key as _apiKey on the gateway URL for your own quota.
Tools
validate_emailrequired: emailValidate an email address to check if it is properly formatted, has valid DNS, is disposable, or is an alias.
emailreqstringThe email address to validate.Try it
check_domainrequired: domainCheck whether a domain is associated with disposable or temporary email services.
domainreqstringThe domain name to check, e.g. "mailinator.com".Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/disify/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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": "[email protected]"}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("validate_email", {"email":"example"});// Or ask in plain English:
const answer = await px.ask("detect disposable and invalid email addresses via disify");