Skip to content
VS Code

cws for VS Code

io.github.mikusnuz/cws

MCP server for Chrome Web Store — extension upload, publish, status, and rollout

client:VS Code transport:stdio runtime:npm

Install cws in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cws-client-id",
      "description": "CWS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cws-client-secret",
      "description": "CWS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cws-refresh-token",
      "description": "CWS_REFRESH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "cws": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cws-mcp"
      ],
      "env": {
        "CWS_CLIENT_ID": "${input:cws-client-id}",
        "CWS_CLIENT_SECRET": "${input:cws-client-secret}",
        "CWS_REFRESH_TOKEN": "${input:cws-refresh-token}"
      }
    }
  }
}

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

cws in other clients