Have I Been Pwned

liveSecurity

Password breach checks (k-anonymity, no key) + breach catalog (no key) + breached-account lookup (paid BYO key).

6tools
0msauth
free tier50 calls/day
🔑Authentication

Password checks and breach-catalog tools are free with no key. check_account requires a paid HIBP subscription key passed as _apiKey.

Config with credentials
{
  "mcpServers": {
    "pipeworx-hibp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hibp/mcp?_apiKey=your_hibp_key"
      ]
    }
  }
}

Tools

check_passwordrequired: password

k-anonymity password check; only the first 5 hex chars of the SHA-1 leave the worker.

Parameters
NameTypeDescription
passwordreqstringPassword to check
Try it
check_password_prefixrequired: sha1_prefix

Direct k-anonymity: send a 5-char SHA-1 prefix, receive suffixes and counts.

Parameters
NameTypeDescription
sha1_prefixreqstring5 hex chars
Try it
list_breaches

All publicly-known breaches, optionally filtered by domain.

Parameters
NameTypeDescription
domainoptstringOptional domain
Try it
get_breachrequired: name

Single breach by name.

Parameters
NameTypeDescription
namereqstringBreach name
Try it
list_data_classes

Canonical data-class tags.

No parameters required.

Try it
check_accountrequired: account

REQUIRES PAID KEY. Breaches an email account appears in.

Parameters
NameTypeDescription
accountreqstringEmail address
truncateoptbooleanReturn only breach names (default true)
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/hibp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/hibp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"check_password","arguments":{"password": "example"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("check_password", {"password":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("password breach checks (k-anonymity, no key) + breach catalog (no key) + breached-account lookup (paid byo key)");