Skip to content
VS Code

beacon mcp for VS Code

io.github.enrichgateagent-png/beacon-mcp

Search 17,900+ open-source AI agents by capability, ranked by GitHub traction. Free, no key.

client:VS Code transport:stdio runtime:npm

Install beacon mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "beacon-registry-url",
      "description": "BEACON_REGISTRY_URL",
      "password": true
    }
  ],
  "servers": {
    "beacon-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "beacon-mcp"
      ],
      "env": {
        "BEACON_REGISTRY_URL": "${input:beacon-registry-url}"
      }
    }
  }
}

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

beacon mcp in other clients