Connects Claude to the Have I Been Pwned API for checking data breach exposure. Right now it exposes one tool: listing HIBP's canonical data class tags like "Email addresses" or "Passwords" for filtering breach information. Part of the broader Pipeworx gateway ecosystem, which packages 673+ data sources as MCP servers. You can use it standalone or through Pipeworx's ask_pipeworx natural language interface that handles tool selection and argument mapping automatically. Best for security workflows where you need to query breach data or understand what types of information have been compromised in known incidents.
Have I Been Pwned MCP
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
list_data_classes | Canonical list of HIBP "data class" tags (e.g., "Email addresses", "Passwords", "Geographic locations"). Useful for filtering breaches. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"hibp": {
"url": "https://gateway.pipeworx.io/hibp/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Hibp data" })
The gateway picks the right tool and fills the arguments automatically.
MIT