Disify

liveSecurityDeveloper

Detect disposable and invalid email addresses via Disify. Bring your own Disify API key (_apiKey) — the keyless anonymous quota is shared and usually spent.

2tools
0msauth
free tier50 calls/day
🔑Authentication

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.

Config with credentials

Tools

validate_emailrequired: email

Validate an email address to check if it is properly formatted, has valid DNS, is disposable, or is an alias.

Parameters
NameTypeDescription
emailreqstringThe email address to validate.
Try it
check_domainrequired: domain

Check whether a domain is associated with disposable or temporary email services.

Parameters
NameTypeDescription
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.

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": "[email protected]"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("validate_email", {"email":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("detect disposable and invalid email addresses via disify");