check_risk

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

Fraud/security view of an IP: is it a VPN, proxy, Tor exit, datacenter/hosting, or mobile network, plus a 0-100 risk score and a one-line assessment. Answers “is this IP an anonymizer / bot / datacenter, or a clean residential IP?”. Keyless.

Parameters

NameTypeRequiredDescription
ipstringyesAn IPv4 or IPv6 address to assess, e.g. “8.8.8.8” or “185.220.101.1”.

Example call

Arguments

{
  "ip": "8.8.8.8"
}

curl

curl -X POST https://gateway.pipeworx.io/ipquery/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"check_risk","arguments":{"ip":"8.8.8.8"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('check_risk', {
  "ip": "8.8.8.8"
});

More examples

{
  "ip": "185.220.101.1"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ipquery": {
      "url": "https://gateway.pipeworx.io/ipquery/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026