Skip to content
VS Code

clishop for VS Code

io.github.stefdcl/clishop

Order anything from your terminal — search, buy, track, and manage via MCP tools.

client:VS Code transport:stdio runtime:npm

Install clishop in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clishop-api-key",
      "description": "CLISHOP_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "clishop": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "clishop"
      ],
      "env": {
        "CLISHOP_API_KEY": "${input:clishop-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

clishop in other clients