Skip to content
VS Code

inspector for VS Code

io.github.gridinsoft/inspector

Website safety and trust analysis. Verify domain reputation and detect phishing with GridinSoft.

client:VS Code transport:stdio runtime:npm

Install inspector in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gridinsoft-api-key",
      "description": "GRIDINSOFT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "inspector": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gridinsoft/mcp-inspector"
      ],
      "env": {
        "GRIDINSOFT_API_KEY": "${input:gridinsoft-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

inspector in other clients