email_breach_analytics
Pack: xposedornot · Endpoint: https://gateway.pipeworx.io/xposedornot/mcp
Detailed breach-exposure report for an email address: every breach it appears in with breach date, records affected and which data classes leaked (passwords, phone numbers, addresses), plus an overall risk score/label, password-strength breakdown and paste exposures. Free, no key.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
email | string | yes | Email address to analyze, 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_breach_analytics","arguments":{"email":"[email protected]"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('email_breach_analytics', {
"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.