Url Safety Checker

Security REST API MCP

Run offline heuristic safety checks on a URL and return a risk level (low/medium/high), a 0+ risk score, per-check results, and warnings. Checks HTTPS, suspicious TLDs, URL shorteners, phishing keyword patterns, raw IP hosts, deceptive domain characters, and excessive subdomains. No network requests — pattern analysis only.

This page documents the HTTP endpoint POST /api/tools/url-safety-checker/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/url-safety-checker/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/url-safety-checker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/url-safety-checker

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
url string yes The URL to check. "https://" is assumed when no scheme is given.

Example arguments (verified)

{
  "url": "https://example.com"
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:url_safety_checker after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Url Safety Checker →

More Security tools