Built for AI

Your AI assistant can run fraud checks.

FraudCheck ships a native MCP server — the open protocol AI assistants use to call external tools. Connect it once with your API key, and Claude, ChatGPT, Grok, Gemini, Cursor, or any MCP-capable agent can screen an order, look up an IP, or run a sanctions check mid-conversation. Same checks, same limits, same billing as the REST API.

Connect your assistant

Claude Code:

claude mcp add --transport http fraudcheck https://fraudcheckapi.com/mcp --header "X-Api-Key: YOUR_API_KEY"

Or any MCP client that takes a JSON config:

{
  "mcpServers": {
    "fraudcheck": {
      "type": "http",
      "url": "https://fraudcheckapi.com/mcp",
      "headers": { "X-Api-Key": "YOUR_API_KEY" }
    }
  }
}
AssistantHow to connect
Claude CodeRun the one-line command above.
ChatGPTSettings → Connectors → add a custom connector with the URL https://fraudcheckapi.com/mcp, choose API key authentication, and paste your key.
Grokgrok.com/connectorsNew Connector → Custom → enter the same URL and your API key.
Gemini CLIAdd the JSON config above to your MCP settings (~/.gemini/settings.json, using httpUrl).
Cursor, VS Code & othersPaste the JSON config above into the client's MCP settings — any client that supports remote MCP servers works.

Then just ask: "Screen this order — IP 9.9.9.9, email [email protected], shipping to DE." The assistant calls the tools and reads back the checks.

🛠️
The tools your assistant gets
ToolWhat it does
screenThe full composite: any mix of IP, email, phone, shipping country and name in one call — per-check results, reason codes, advisory score.
check_ipCountry, network operator, Tor / VPN / datacenter / hostile-network flags, proxy likelihood.
check_emailSyntax, deliverability, sender-authentication records, disposable / role / free-mail detection.
check_phoneValidity, line type, region and carrier metadata, recent scam-report flag.
check_nameSanctions screening of people and companies, including known aliases.
geolocateFull IP geolocation: country, region, city, coordinates, time zone.
list_reason_codesThe live reason-code catalog with current weights and meanings.

Machine-readable everything

Agents and tooling can discover the whole API without a human in the loop:

/.well-known/mcp/server-card.jsonMCP server discovery
/.well-known/api-catalogAPI catalog (RFC 9727)
/openapi/v1.jsonFull OpenAPI specification
/llms.txtLLM-friendly product overview
/.well-known/oauth-authorization-serverOAuth discovery metadata

MCP calls use your normal API key and count toward your plan like any REST call — nothing separate to set up or pay for.

Get your API key →

Results are derived from publicly available databases and are provided as-is. Checks, not verdicts — your assistant reads them; you make the call.