mcp server for VS Code
com.plentopasto/mcp-server
Plan a week of budget family dinners from your pantry, then send the list to the Instacart® app.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "plentopasto-api-key",
"description": "PLENTOPASTO_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@plentopasto/mcp-server"
],
"env": {
"PLENTOPASTO_API_KEY": "${input:plentopasto-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