# Password Breach Checker — REST API endpoint `password-breach-checker`

Return whether a password appears in known data breaches and how many times, using the Have I Been Pwned k-anonymity range API. Only the first 5 characters of the SHA-1 hash are sent upstream.

- Category: security
- 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/password-breach-checker/execute (no API keys, 60 req/min per IP)
- Network tool: fetches a fixed, hard-coded public upstream (never a private host).
- Reference page: https://findutils.com/api/password-breach-checker/
- Same tool on the other surface: https://findutils.com/mcp/password-breach-checker/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/password-breach-checker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "password": "password"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/password-breach-checker
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `password` | string | yes | The password to check. It is hashed locally and never transmitted. |

Example arguments (verified):

```json
{
  "password": "password"
}
```

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:password_breach_checker`. Full MCP reference: https://findutils.com/mcp/password-breach-checker/

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