Skip to content
VS Code

drop beacon mcp for VS Code

io.github.direct-web/drop-beacon-mcp

Search 100K+ EDC products. Track drops, compare prices, and analyze market trends.

client:VS Code transport:stdio runtime:npm

Install drop beacon mcp in VS Code

.vscode/mcp.json

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

drop beacon mcp in other clients