list_data_classes
Pack: hibp · Endpoint: https://gateway.pipeworx.io/hibp/mcp
Canonical list of HIBP “data class” tags (e.g., “Email addresses”, “Passwords”, “Geographic locations”). Useful for filtering breaches.
Example call
Arguments
{}
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":"list_data_classes","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_data_classes', {});
Response shape
Always returns: count, data_classes
| Field | Type | Description |
|---|---|---|
count | number | Number of data classes |
data_classes | array | Canonical HIBP data class tags |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of data classes"
},
"data_classes": {
"type": "array",
"description": "Canonical HIBP data class tags",
"items": {
"type": "string"
}
}
},
"required": [
"count",
"data_classes"
]
}
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.