Skip to content
VS Code

clearfront for VS Code

sh.clearfront/clearfront

OSINT sweep of a digital footprint: breaches, accounts, data brokers, domains and IPs

client:VS Code transport:stdio runtime:pypi

Install clearfront in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hibp-api-key",
      "description": "HIBP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ipinfo-token",
      "description": "IPINFO_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shodan-api-key",
      "description": "SHODAN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "virustotal-api-key",
      "description": "VIRUSTOTAL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "clearfront": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "clearfront"
      ],
      "env": {
        "HIBP_API_KEY": "${input:hibp-api-key}",
        "IPINFO_TOKEN": "${input:ipinfo-token}",
        "SHODAN_API_KEY": "${input:shodan-api-key}",
        "VIRUSTOTAL_API_KEY": "${input:virustotal-api-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

clearfront in other clients