Skip to content
VS Code

Yandex Wordstat MCP for VS Code

io.github.askads/mcp-yandex-wordstat

MCP server for Yandex Wordstat API: top & related queries, demand dynamics and regions.

client:VS Code transport:stdio runtime:npm

Install Yandex Wordstat MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wordstat-api-key",
      "description": "WORDSTAT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordstat-folder-id",
      "description": "WORDSTAT_FOLDER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordstat-lang",
      "description": "WORDSTAT_LANG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordstat-api-base",
      "description": "WORDSTAT_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordstat-timeout-ms",
      "description": "WORDSTAT_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordstat-max-retries",
      "description": "WORDSTAT_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-yandex-wordstat": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-yandex-wordstat"
      ],
      "env": {
        "WORDSTAT_API_KEY": "${input:wordstat-api-key}",
        "WORDSTAT_FOLDER_ID": "${input:wordstat-folder-id}",
        "WORDSTAT_LANG": "${input:wordstat-lang}",
        "WORDSTAT_API_BASE": "${input:wordstat-api-base}",
        "WORDSTAT_TIMEOUT_MS": "${input:wordstat-timeout-ms}",
        "WORDSTAT_MAX_RETRIES": "${input:wordstat-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 Wordstat MCP in other clients