check_ip
Pack: ipqualityscore · Endpoint: https://gateway.pipeworx.io/ipqualityscore/mcp
Fraud detection & risk scoring for an IP address. Answers “is this IP a proxy, VPN, or Tor exit node?”, flags bots/crawlers and recent abuse, and returns a 0-100 fraud score plus geolocation (country, region, city, ISP, connection type). Example: check_ip({ ip: “8.8.8.8”, strictness: 1 }) Requires your own IPQualityScore API key, passed as _apiKey.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ip | string | yes | IPv4 or IPv6 address to check, e.g. “8.8.8.8” |
strictness | number | no | Detection strictness 0, 1, or 2. Higher = more aggressive proxy/VPN detection (more false positives). Default 1. |
_apiKey | string | yes | Your own IPQualityScore API key (BYO — Pipeworx does not supply one). Free tier at ipqualityscore.com; the key is on the account dashboard. |
Example call
Arguments
{
"_apiKey": "your-ipqualityscore-api-key",
"ip": "8.8.8.8",
"strictness": 1
}
curl
curl -X POST https://gateway.pipeworx.io/ipqualityscore/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"check_ip","arguments":{"_apiKey":"your-ipqualityscore-api-key","ip":"8.8.8.8","strictness":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('check_ip', {
"_apiKey": "your-ipqualityscore-api-key",
"ip": "8.8.8.8",
"strictness": 1
});
More examples
{
"_apiKey": "your-ipqualityscore-api-key",
"ip": "192.168.1.1",
"strictness": 0
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ipqualityscore": {
"url": "https://gateway.pipeworx.io/ipqualityscore/mcp"
}
}
}
See Getting Started for client-specific install steps.