Skip to content
VS Code

CartScout for VS Code

io.github.veselin15/cartscout-mcp

Live product prices, stock, variants and deal ratings from Shopify, Walmart, eBay and more.

client:VS Code transport:stdio runtime:pypi

Install CartScout in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rapidapi-key",
      "description": "RAPIDAPI_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cartscout-rapidapi-host",
      "description": "CARTSCOUT_RAPIDAPI_HOST",
      "password": true
    }
  ],
  "servers": {
    "cartscout-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cartscout-mcp"
      ],
      "env": {
        "RAPIDAPI_KEY": "${input:rapidapi-key}",
        "CARTSCOUT_RAPIDAPI_HOST": "${input:cartscout-rapidapi-host}"
      }
    }
  }
}

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

CartScout in other clients