CellarTracker for VS Code
io.github.slavins-co/cellartracker-mcp
Read-only access to your CellarTracker wine cellar: inventory, drinking windows, purchases, notes.
client:VS Code
transport:stdio
runtime:npm
Install CellarTracker in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ct-username",
"description": "CT_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "ct-password",
"description": "CT_PASSWORD",
"password": true
}
],
"servers": {
"cellartracker-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"cellartracker-mcp"
],
"env": {
"CT_USERNAME": "${input:ct-username}",
"CT_PASSWORD": "${input:ct-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs