hibp for VS Code
io.github.darrenjrobinson/hibp
A Model Context Protocol (MCP) server for the Have I Been Pwned (HIBP) API
client:VS Code
transport:stdio
runtime:npm
Install hibp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hibp-api-key",
"description": "HIBP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hibp-subscription-plan",
"description": "HIBP_SUBSCRIPTION_PLAN",
"password": true
}
],
"servers": {
"hibp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@darrenjrobinson/hibp-mcp"
],
"env": {
"HIBP_API_KEY": "${input:hibp-api-key}",
"HIBP_SUBSCRIPTION_PLAN": "${input:hibp-subscription-plan}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs