Skip to content
VS Code

toolradar for VS Code

io.github.nadeus/toolradar

Search, compare, and get pricing for 8,600+ software tools with verified data.

client:VS Code transport:stdio runtime:npm

Install toolradar in VS Code

.vscode/mcp.json

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

toolradar in other clients