email_breaches
Pack: xposedornot · Endpoint: https://gateway.pipeworx.io/xposedornot/mcp
Check whether an email address appears in known data breaches. Free lookup, no key: returns the list of breach names the address was found in (e.g. LinkedIn, Adobe), or breached=false. For per-breach detail — what data was exposed, dates, risk score — follow up with email_breach_analytics.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
email | string | yes | Email address to check, e.g. “[email protected]”. |
Example call
Arguments
{
"email": "[email protected]"
}
curl
curl -X POST https://gateway.pipeworx.io/xposedornot/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"email_breaches","arguments":{"email":"[email protected]"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('email_breaches', {
"email": "[email protected]"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"xposedornot": {
"url": "https://gateway.pipeworx.io/xposedornot/mcp"
}
}
}
See Getting Started for client-specific install steps.