Disify

live Utilities

Detect 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
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": "[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");

Related packs

Other Pipeworx packs in the same categories (Utilities):