Skip to content
VS Code

Silpo MCP Server for VS Code

io.github.mit9/silpo-mcp

MCP server for Silpo online supermarket: products, cart, delivery, recipes.

client:VS Code transport:stdio runtime:npm

Install Silpo MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "silpo-basket-id",
      "description": "SILPO_BASKET_ID",
      "password": true
    }
  ],
  "servers": {
    "silpo-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "silpo-mcp"
      ],
      "env": {
        "SILPO_BASKET_ID": "${input:silpo-basket-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Silpo MCP Server in other clients