Skip to content
VS Code

willmehr for VS Code

io.github.taneron/willmehr

Search willhaben.at for second-hand listings and rank the underpriced ones

client:VS Code transport:stdio runtime:npm

Install willmehr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "willmehr-mode",
      "description": "WILLMEHR_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "willhaben-cookie",
      "description": "WILLHABEN_COOKIE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "willhaben-min-interval-ms",
      "description": "WILLHABEN_MIN_INTERVAL_MS",
      "password": true
    }
  ],
  "servers": {
    "willmehr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "willmehr"
      ],
      "env": {
        "WILLMEHR_MODE": "${input:willmehr-mode}",
        "WILLHABEN_COOKIE": "${input:willhaben-cookie}",
        "WILLHABEN_MIN_INTERVAL_MS": "${input:willhaben-min-interval-ms}"
      }
    }
  }
}

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

willmehr in other clients