wb mcp server for VS Code
io.github.deviceingineering/wb-mcp-server
Wildberries Seller API, 197 tools; responses measured and trimmed: 770k to 75k tokens.
client:VS Code
transport:stdio
runtime:pypi
Install wb mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wb-api-token",
"description": "WB_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "data-dir",
"description": "DATA_DIR",
"password": true
}
],
"servers": {
"wb-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"wb-mcp-server"
],
"env": {
"WB_API_TOKEN": "${input:wb-api-token}",
"DATA_DIR": "${input:data-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs