seon_email
Pack: seon · Endpoint: https://gateway.pipeworx.io/seon/mcp
Look up the digital footprint of an email address via SEON: deliverability, email provider/domain details, data-breach exposure, and which online/social platforms the address is registered on. Example: seon_email({ email: “[email protected]”, _apiKey: “your-seon-license-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
email | string | yes | Email address to enrich, e.g. “[email protected]” |
config | object | no | Optional SEON config object to enable/disable data sources or set timeouts (see docs). Passed through verbatim. |
_apiKey | string | yes | SEON license key (sign up at https://seon.io/pricing/) |
Example call
Arguments
{
"email": "[email protected]",
"_apiKey": "your-seon-license-key"
}
curl
curl -X POST https://gateway.pipeworx.io/seon/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seon_email","arguments":{"email":"[email protected]","_apiKey":"your-seon-license-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('seon_email', {
"email": "[email protected]",
"_apiKey": "your-seon-license-key"
});
More examples
{
"email": "[email protected]",
"config": {
"timeout": 5000
},
"_apiKey": "your-seon-license-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"seon": {
"url": "https://gateway.pipeworx.io/seon/mcp"
}
}
}
See Getting Started for client-specific install steps.