Skip to content
VS Code

google trends mcp for VS Code

io.github.den-indance/google-trends-mcp

Google Trends MCP with proxy rotation, auto-retry on Google blocks, residential-proxy setup.

client:VS Code transport:stdio runtime:npm

Install google trends mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proxy-url",
      "description": "PROXY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proxy-list",
      "description": "PROXY_LIST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proxy-list-file",
      "description": "PROXY_LIST_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proxies-enabled",
      "description": "PROXIES_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "google-trends-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@den.dance/google-trends-mcp"
      ],
      "env": {
        "PROXY_URL": "${input:proxy-url}",
        "PROXY_LIST": "${input:proxy-list}",
        "PROXY_LIST_FILE": "${input:proxy-list-file}",
        "PROXIES_ENABLED": "${input:proxies-enabled}"
      }
    }
  }
}

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

google trends mcp in other clients