Skip to content
VS Code

OpenOSINT for VS Code

io.github.sonotommy/openosint

AI-powered OSINT agent & MCP server. 16 tools: email, breach, IP, WHOIS, DNS, Shodan, GitHub & more.

client:VS Code transport:stdio runtime:pypi

Install OpenOSINT in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "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": "ip2location-api-key",
      "description": "IP2LOCATION_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "abuseipdb-api-key",
      "description": "ABUSEIPDB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "openosint": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "openosint"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "HIBP_API_KEY": "${input:hibp-api-key}",
        "IPINFO_TOKEN": "${input:ipinfo-token}",
        "IP2LOCATION_API_KEY": "${input:ip2location-api-key}",
        "ABUSEIPDB_API_KEY": "${input:abuseipdb-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

OpenOSINT in other clients