yandex webmaster mcp for VS Code
io.github.boxlab-ltd/yandex-webmaster-mcp
Query Yandex Webmaster indexing, queries, diagnostics and backlinks, and recrawl, via an AI agent.
client:VS Code
transport:stdio
runtime:npm
Install yandex webmaster mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yandex-webmaster-token",
"description": "YANDEX_WEBMASTER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "yandex-webmaster-host-id",
"description": "YANDEX_WEBMASTER_HOST_ID",
"password": true
}
],
"servers": {
"yandex-webmaster-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@boxlab/yandex-webmaster-mcp"
],
"env": {
"YANDEX_WEBMASTER_TOKEN": "${input:yandex-webmaster-token}",
"YANDEX_WEBMASTER_HOST_ID": "${input:yandex-webmaster-host-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs