Disify

live SecurityDeveloper

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

2 tools
0ms auth
free tier 50 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_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
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

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"}}}'

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");