untappd for VS Code
io.github.darrenjrobinson/untappd
MCP server exposing Untappd API tools for AI agents — full v4 read API coverage
client:VS Code
transport:stdio
runtime:npm
Install untappd in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "untappd-client-id",
"description": "UNTAPPD_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "untappd-client-secret",
"description": "UNTAPPD_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "untappd-access-token",
"description": "UNTAPPD_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "untappd-username",
"description": "UNTAPPD_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "untappd-redirect-url",
"description": "UNTAPPD_REDIRECT_URL",
"password": true
},
{
"type": "promptString",
"id": "untappd-token-path",
"description": "UNTAPPD_TOKEN_PATH",
"password": true
}
],
"servers": {
"untappd": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"untappd-mcp-server"
],
"env": {
"UNTAPPD_CLIENT_ID": "${input:untappd-client-id}",
"UNTAPPD_CLIENT_SECRET": "${input:untappd-client-secret}",
"UNTAPPD_ACCESS_TOKEN": "${input:untappd-access-token}",
"UNTAPPD_USERNAME": "${input:untappd-username}",
"UNTAPPD_REDIRECT_URL": "${input:untappd-redirect-url}",
"UNTAPPD_TOKEN_PATH": "${input:untappd-token-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs