Skip to content
VS Code

sentinel mcp server for VS Code

io.github.haidrau/sentinel-mcp-server

Shopee price monitoring via MCP.requires extension + MCP Key. T-0 price data for SG/MY/TH/VN/ID/PH.

client:VS Code transport:stdio runtime:oci

Install sentinel mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sentinel-token",
      "description": "SENTINEL_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sentinel-api-key",
      "description": "SENTINEL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sentinel-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/haidrau/sentinel-mcp-server:0.2.0"
      ],
      "env": {
        "SENTINEL_TOKEN": "${input:sentinel-token}",
        "SENTINEL_API_KEY": "${input:sentinel-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

sentinel mcp server in other clients