PluginBench
MCP Server
Maintained
MIT

io.github.darrenjrobinson/hibp MCP Server

io.github.darrenjrobinson/hibp

What is the io.github.darrenjrobinson/hibp MCP server?

A Model Context Protocol (MCP) server for the Have I Been Pwned (HIBP) API

How to install io.github.darrenjrobinson/hibp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • HIBP_API_KEY
    required
    secret

    Your Have I Been Pwned API key from https://haveibeenpwned.com/API/Key

  • HIBP_SUBSCRIPTION_PLAN
    required

    Your HIBP API subscription plan (Pwned 1, Pwned 2, Pwned 3, Pwned 4, or Pwned 5)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "hibp": {
      "command": "npx",
      "args": [
        "-y",
        "@darrenjrobinson/hibp-mcp"
      ],
      "env": {
        "HIBP_API_KEY": "<YOUR_HIBP_API_KEY>",
        "HIBP_SUBSCRIPTION_PLAN": "<YOUR_HIBP_SUBSCRIPTION_PLAN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "hibp": {
      "command": "npx",
      "args": [
        "-y",
        "@darrenjrobinson/hibp-mcp"
      ],
      "env": {
        "HIBP_API_KEY": "<YOUR_HIBP_API_KEY>",
        "HIBP_SUBSCRIPTION_PLAN": "<YOUR_HIBP_SUBSCRIPTION_PLAN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "hibp": {
      "command": "npx",
      "args": [
        "-y",
        "@darrenjrobinson/hibp-mcp"
      ],
      "env": {
        "HIBP_API_KEY": "<YOUR_HIBP_API_KEY>",
        "HIBP_SUBSCRIPTION_PLAN": "<YOUR_HIBP_SUBSCRIPTION_PLAN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "hibp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@darrenjrobinson/hibp-mcp"
      ],
      "env": {
        "HIBP_API_KEY": "<YOUR_HIBP_API_KEY>",
        "HIBP_SUBSCRIPTION_PLAN": "<YOUR_HIBP_SUBSCRIPTION_PLAN>"
      }
    }
  }
}
Claude Code
claude mcp add hibp --env HIBP_API_KEY=<YOUR_HIBP_API_KEY> --env HIBP_SUBSCRIPTION_PLAN=<YOUR_HIBP_SUBSCRIPTION_PLAN> -- npx -y @darrenjrobinson/hibp-mcp

Related MCP servers

Search the Entra.news newsletter archive — a weekly digest of Microsoft Entra news

7
TypeScript
View repository →

MCP server exposing Untappd API tools for AI agents

0
TypeScript
View repository →