BlackDome Threat Intel for VS Code
io.github.blackdome-ai/blackdome
Live honeypot threat intel: attacker IPs, IOCs, credentials, payloads, actors.
client:VS Code
transport:stdio
runtime:pypi
Install BlackDome Threat Intel in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "blackdome-api-key",
"description": "BLACKDOME_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "blackdome-base-url",
"description": "BLACKDOME_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "blackdome-timeout",
"description": "BLACKDOME_TIMEOUT",
"password": true
}
],
"servers": {
"blackdome": {
"type": "stdio",
"command": "uvx",
"args": [
"blackdome-mcp"
],
"env": {
"BLACKDOME_API_KEY": "${input:blackdome-api-key}",
"BLACKDOME_BASE_URL": "${input:blackdome-base-url}",
"BLACKDOME_TIMEOUT": "${input:blackdome-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs