check_url

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

URL / malware safety scan. Checks whether a URL or domain is unsafe — phishing, malware, spam — and returns a risk score, domain reputation rank, content category, DNS validity, and domain age. Example: check_url({ url: “https://example.com” }) Requires your own IPQualityScore API key, passed as _apiKey.

Parameters

NameTypeRequiredDescription
urlstringyesFull URL or domain to scan, e.g. “https://example.com
_apiKeystringyesYour 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",
  "url": "https://example.com"
}

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_url","arguments":{"_apiKey":"your-ipqualityscore-api-key","url":"https://example.com"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('check_url', {
  "_apiKey": "your-ipqualityscore-api-key",
  "url": "https://example.com"
});

More examples

{
  "_apiKey": "your-ipqualityscore-api-key",
  "url": "https://suspicious-domain.net"
}

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.

Regenerated from source · build September 3, 2026