swissgroceries mcp for VS Code
io.github.nicktcode/swissgroceries-mcp
Swiss grocery search, promotions, and shopping plans across Migros, Coop, Aldi, Denner, Lidl.
client:VS Code
transport:stdio
runtime:npm
Install swissgroceries mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "denner-jwt",
"description": "DENNER_JWT",
"password": true
},
{
"type": "promptString",
"id": "lidl-default-store",
"description": "LIDL_DEFAULT_STORE",
"password": true
},
{
"type": "promptString",
"id": "swissgroceries-user-agent-coop",
"description": "SWISSGROCERIES_USER_AGENT_COOP",
"password": true
},
{
"type": "promptString",
"id": "swissgroceries-log-level",
"description": "SWISSGROCERIES_LOG_LEVEL",
"password": true
},
{
"type": "promptString",
"id": "swissgroceries-disable-cache",
"description": "SWISSGROCERIES_DISABLE_CACHE",
"password": true
}
],
"servers": {
"swissgroceries-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@nicktcode/swissgroceries-mcp"
],
"env": {
"DENNER_JWT": "${input:denner-jwt}",
"LIDL_DEFAULT_STORE": "${input:lidl-default-store}",
"SWISSGROCERIES_USER_AGENT_COOP": "${input:swissgroceries-user-agent-coop}",
"SWISSGROCERIES_LOG_LEVEL": "${input:swissgroceries-log-level}",
"SWISSGROCERIES_DISABLE_CACHE": "${input:swissgroceries-disable-cache}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs