# Privacy Policy Checker — REST API endpoint `privacy-policy-checker`

Check a privacy policy text for 24 expected disclosures and return a 0-100 completeness score, each check with found/missing and severity, up to 5 warnings for missing critical elements, and a one-line summary. Keyword/regex based — no legal advice.

- Category: developer
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/privacy-policy-checker/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/privacy-policy-checker/
- Same tool on the other surface: https://findutils.com/mcp/privacy-policy-checker/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/privacy-policy-checker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "policy_text": "We collect personal data and use cookies. Contact us at privacy@example.com."
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/privacy-policy-checker
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `policy_text` | string | yes | The full privacy policy text to analyze. |

Example arguments (verified):

```json
{
  "policy_text": "We collect personal data and use cookies. Contact us at privacy@example.com."
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:privacy_policy_checker`. Full MCP reference: https://findutils.com/mcp/privacy-policy-checker/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
