get_breach

Pack: hibp · Endpoint: https://gateway.pipeworx.io/hibp/mcp

Fetch a single breach by name (the “Name” field from list_breaches, e.g., “Adobe”, “LinkedIn”). Returns full breach metadata.

Parameters

NameTypeRequiredDescription
namestringyesBreach name (case-sensitive)

Example call

Arguments

{
  "name": "Adobe"
}

curl

curl -X POST https://gateway.pipeworx.io/hibp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_breach","arguments":{"name":"Adobe"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_breach', {
  "name": "Adobe"
});

More examples

{
  "name": "LinkedIn"
}

Response shape

Always returns: name, title, domain, breach_date, added_date, modified_date, pwn_count, description, data_classes, is_verified, is_fabricated, is_sensitive, is_retired, is_spam_list, is_malware, logo_path

FieldTypeDescription
namestring | nullUnique breach name
titlestring | nullHuman-readable breach title
domainstring | nullPrimary domain affected
breach_datestring | nullDate breach occurred
added_datestring | nullDate added to HIBP
modified_datestring | nullLast modification date
pwn_countnumber | nullNumber of affected accounts
descriptionstring | nullDetailed breach description
data_classesarrayTypes of data exposed
is_verifiedboolean | nullWhether breach is verified
is_fabricatedboolean | nullWhether breach is fabricated
is_sensitiveboolean | nullWhether breach is sensitive
is_retiredboolean | nullWhether breach is retired
is_spam_listboolean | nullWhether this is a spam list
is_malwareboolean | nullWhether malware was involved
logo_pathstring | nullPath to breach logo image
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Unique breach name"
    },
    "title": {
      "type": [
        "string",
        "null"
      ],
      "description": "Human-readable breach title"
    },
    "domain": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary domain affected"
    },
    "breach_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Date breach occurred"
    },
    "added_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Date added to HIBP"
    },
    "modified_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Last modification date"
    },
    "pwn_count": {
      "type": [
        "number",
        "null"
      ],
      "description": "Number of affected accounts"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Detailed breach description"
    },
    "data_classes": {
      "type": "array",
      "description": "Types of data exposed",
      "items": {
        "type": "string"
      }
    },
    "is_verified": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether breach is verified"
    },
    "is_fabricated": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether breach is fabricated"
    },
    "is_sensitive": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether breach is sensitive"
    },
    "is_retired": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether breach is retired"
    },
    "is_spam_list": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether this is a spam list"
    },
    "is_malware": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether malware was involved"
    },
    "logo_path": {
      "type": [
        "string",
        "null"
      ],
      "description": "Path to breach logo image"
    }
  },
  "required": [
    "name",
    "title",
    "domain",
    "breach_date",
    "added_date",
    "modified_date",
    "pwn_count",
    "description",
    "data_classes",
    "is_verified",
    "is_fabricated",
    "is_sensitive",
    "is_retired",
    "is_spam_list",
    "is_malware",
    "logo_path"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hibp": {
      "url": "https://gateway.pipeworx.io/hibp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 27, 2026