Skip to content
VS Code

yandex metrika for VS Code

io.github.dontsovcmc/yandex-metrika

MCP server for Yandex Metrika API — counters, goals, reports, segments, logs

client:VS Code transport:stdio runtime:pypi

Install yandex metrika in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "yandex-metrika-token",
      "description": "YANDEX_METRIKA_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "yandex-metrika": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-yandex-metrika"
      ],
      "env": {
        "YANDEX_METRIKA_TOKEN": "${input:yandex-metrika-token}"
      }
    }
  }
}

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

yandex metrika in other clients