untappd mcp for VS Code
io.github.chrischall/untappd-mcp
Untappd MCP — search beers/breweries/venues, read check-ins & wishlists, post check-ins
client:VS Code
transport:stdio
runtime:npm
Install untappd mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "untappd-username",
"description": "UNTAPPD_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "untappd-password",
"description": "UNTAPPD_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "untappd-client-id",
"description": "UNTAPPD_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "untappd-client-secret",
"description": "UNTAPPD_CLIENT_SECRET",
"password": true
}
],
"servers": {
"untappd-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"untappd-mcp"
],
"env": {
"UNTAPPD_USERNAME": "${input:untappd-username}",
"UNTAPPD_PASSWORD": "${input:untappd-password}",
"UNTAPPD_CLIENT_ID": "${input:untappd-client-id}",
"UNTAPPD_CLIENT_SECRET": "${input:untappd-client-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs