Bangermap for VS Code
io.github.adesiahq/bangermap-mcp
Find YouTube outliers, videos that beat their channel's own baseline, on your own free API key.
client:VS Code
transport:stdio
runtime:npm
Install Bangermap in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "youtube-api-key",
"description": "YOUTUBE_API_KEY",
"password": true
}
],
"servers": {
"bangermap-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"bangermap-mcp"
],
"env": {
"YOUTUBE_API_KEY": "${input:youtube-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