seon_fraud

Pack: seon · Endpoint: https://gateway.pipeworx.io/seon/mcp

Aggregate fraud assessment via SEON: combine email, phone, and/or IP into a single fraud_score with the applied_rules that fired and a decision state (e.g. APPROVE/REVIEW/DECLINE). Pass at least one of email/phone/ip. Example: seon_fraud({ email: “[email protected]”, ip: “8.8.8.8”, _apiKey: “your-seon-license-key” })

Parameters

NameTypeRequiredDescription
emailstringnoEmail address (optional)
phonestringnoPhone number in E.164 format (optional). Sent as phone_number.
ipstringnoIP address (optional)
configobjectnoOptional SEON config/modules object to enable/disable sub-APIs (see docs). Passed through verbatim.
_apiKeystringyesSEON license key (sign up at https://seon.io/pricing/)

Example call

Arguments

{
  "email": "[email protected]",
  "ip": "8.8.8.8",
  "_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_fraud","arguments":{"email":"[email protected]","ip":"8.8.8.8","_apiKey":"your-seon-license-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('seon_fraud', {
  "email": "[email protected]",
  "ip": "8.8.8.8",
  "_apiKey": "your-seon-license-key"
});

More examples

{
  "email": "[email protected]",
  "phone": "+13106667777",
  "ip": "192.168.1.100",
  "_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.

Regenerated from source · build August 24, 2026