Skip to content
VS Code

thunderbit mcp server for VS Code

io.github.thunderbit-com/thunderbit-mcp-server

AI-powered web scraping MCP. Distill pages to Markdown or extract structured data via JSON Schema.

client:VS Code transport:stdio runtime:npm

Install thunderbit mcp server in VS Code

.vscode/mcp.json

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

thunderbit mcp server in other clients