Skip to content
VS Code

Yandex Webmaster MCP for VS Code

io.github.askads/mcp-yandex-webmaster

MCP server for Yandex Webmaster API: indexing, search queries, sitemaps, diagnostics, links.

client:VS Code transport:stdio runtime:npm

Install Yandex Webmaster MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "yandex-oauth-token",
      "description": "YANDEX_OAUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yandex-user-id",
      "description": "YANDEX_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yandex-webmaster-host-id",
      "description": "YANDEX_WEBMASTER_HOST_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yandex-webmaster-api-base",
      "description": "YANDEX_WEBMASTER_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yandex-webmaster-timeout-ms",
      "description": "YANDEX_WEBMASTER_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "yandex-webmaster-max-retries",
      "description": "YANDEX_WEBMASTER_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-yandex-webmaster": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-yandex-webmaster"
      ],
      "env": {
        "YANDEX_OAUTH_TOKEN": "${input:yandex-oauth-token}",
        "YANDEX_USER_ID": "${input:yandex-user-id}",
        "YANDEX_WEBMASTER_HOST_ID": "${input:yandex-webmaster-host-id}",
        "YANDEX_WEBMASTER_API_BASE": "${input:yandex-webmaster-api-base}",
        "YANDEX_WEBMASTER_TIMEOUT_MS": "${input:yandex-webmaster-timeout-ms}",
        "YANDEX_WEBMASTER_MAX_RETRIES": "${input:yandex-webmaster-max-retries}"
      }
    }
  }
}

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

Yandex Webmaster MCP in other clients