Maskbreak for VS Code
com.maskbreak/mcp
Public IP signals (cloud hosting, Tor exits) and Maskbreak API status for fraud checks.
client:VS Code
transport:stdio
runtime:npm
Install Maskbreak in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "maskbreak-api-key",
"description": "MASKBREAK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sentinel-base-url",
"description": "SENTINEL_BASE_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sentinelsup/mcp"
],
"env": {
"MASKBREAK_API_KEY": "${input:maskbreak-api-key}",
"SENTINEL_BASE_URL": "${input:sentinel-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs