Skip to content
VS Code

SEO Tools: XMLRiver SERP (Google + Yandex) for VS Code

io.github.antohins/seo-tools-mcp-xmlriver

Google & Yandex SERP, image/news verticals and URL indexation checks via XMLRiver (read-only).

client:VS Code transport:stdio runtime:npm

Install SEO Tools: XMLRiver SERP (Google + Yandex) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "xmlriver-user",
      "description": "XMLRIVER_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xmlriver-key",
      "description": "XMLRIVER_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xmlriver-exclude-domains",
      "description": "XMLRIVER_EXCLUDE_DOMAINS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xmlriver-price-per-call",
      "description": "XMLRIVER_PRICE_PER_CALL",
      "password": true
    }
  ],
  "servers": {
    "seo-tools-mcp-xmlriver": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "seo-tools-mcp-xmlriver"
      ],
      "env": {
        "XMLRIVER_USER": "${input:xmlriver-user}",
        "XMLRIVER_KEY": "${input:xmlriver-key}",
        "XMLRIVER_EXCLUDE_DOMAINS": "${input:xmlriver-exclude-domains}",
        "XMLRIVER_PRICE_PER_CALL": "${input:xmlriver-price-per-call}"
      }
    }
  }
}

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

SEO Tools: XMLRiver SERP (Google + Yandex) in other clients