A1 Yandex KIT MCP for VS Code
io.github.gistrec/mcp-yandex-kit
A1 Yandex KIT MCP server for the Yandex KIT e-commerce API: products, orders, discounts, webhooks.
client:VS Code
transport:stdio
runtime:npm
Install A1 Yandex KIT MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yandex-kit-token",
"description": "YANDEX_KIT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "yandex-kit-base-url",
"description": "YANDEX_KIT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "yandex-kit-rps",
"description": "YANDEX_KIT_RPS",
"password": true
},
{
"type": "promptString",
"id": "yandex-kit-timeout-ms",
"description": "YANDEX_KIT_TIMEOUT_MS",
"password": true
}
],
"servers": {
"mcp-yandex-kit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-yandex-kit"
],
"env": {
"YANDEX_KIT_TOKEN": "${input:yandex-kit-token}",
"YANDEX_KIT_BASE_URL": "${input:yandex-kit-base-url}",
"YANDEX_KIT_RPS": "${input:yandex-kit-rps}",
"YANDEX_KIT_TIMEOUT_MS": "${input:yandex-kit-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs