Skip to content
VS Code

wildberries for VS Code

io.github.dontsovcmc/wildberries

MCP server for Wildberries Seller API — products, orders, supplies, analytics, advertising

client:VS Code transport:stdio runtime:pypi

Install wildberries in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wb-token",
      "description": "WB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "wildberries": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-wildberries"
      ],
      "env": {
        "WB_TOKEN": "${input:wb-token}"
      }
    }
  }
}

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

wildberries in other clients