Data Sanitizer

Security REST API MCP

Sanitize untrusted text and return the cleaned output, a list of changes made, and a risk level. Modes: html (escape HTML special characters), sql (escape quotes/backslashes, strip comments and semicolons), js (strip script tags, javascript: URLs, event handlers, CSS expressions), url (percent-encode), or all (html + sql + js). Defaults to all.

This page documents the HTTP endpoint POST /api/tools/data-sanitizer/execute. See the MCP reference →

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/data-sanitizer/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "<b>hi</b>",
    "mode": "html"
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/data-sanitizer

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
text string yes The input text to sanitize.
mode string (html | sql | js | url | all) no Sanitization mode. Default: all. Default: "all".

Example arguments (verified)

{
  "text": "<b>hi</b>",
  "mode": "html"
}

Also an MCP tool

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

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Data Sanitizer →

More Security tools