seon_phone
Pack: seon · Endpoint: https://gateway.pipeworx.io/seon/mcp
Look up the digital footprint of a phone number via SEON: carrier and line type, validity, and which online/social/account platforms the number is linked to. Example: seon_phone({ phone: “+13106667777”, _apiKey: “your-seon-license-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
phone | string | yes | Phone number in E.164 format, e.g. “+13106667777” |
config | object | no | Optional SEON config object (see docs). Passed through verbatim. |
_apiKey | string | yes | SEON license key (sign up at https://seon.io/pricing/) |
Example call
Arguments
{
"phone": "+13106667777",
"_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_phone","arguments":{"phone":"+13106667777","_apiKey":"your-seon-license-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('seon_phone', {
"phone": "+13106667777",
"_apiKey": "your-seon-license-key"
});
More examples
{
"phone": "+447911123456",
"_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.