Skip to content
VS Code

OSINT MCP for VS Code

io.github.rjn32s/osint-mcp

26 free OSINT tools as MCP tools for AI agents. Auto-installs everything on first run.

client:VS Code transport:stdio runtime:pypi

Install OSINT MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shodan-key",
      "description": "SHODAN_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "virustotal-key",
      "description": "VIRUSTOTAL_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ipinfo-key",
      "description": "IPINFO_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hibp-key",
      "description": "HIBP_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "urlscan-key",
      "description": "URLSCAN_KEY",
      "password": true
    }
  ],
  "servers": {
    "osint-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "osint-mcp"
      ],
      "env": {
        "SHODAN_KEY": "${input:shodan-key}",
        "VIRUSTOTAL_KEY": "${input:virustotal-key}",
        "IPINFO_KEY": "${input:ipinfo-key}",
        "HIBP_KEY": "${input:hibp-key}",
        "URLSCAN_KEY": "${input:urlscan-key}"
      }
    }
  }
}

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

OSINT MCP in other clients