Skip to content
VS Code

Trendzeist – Google Trends for content ideation for VS Code

io.github.phalkmin/trendzeist-mcp

Free Google Trends MCP: ranked breakout/rising/evergreen topics for content ideas. No API key.

client:VS Code transport:stdio runtime:pypi

Install Trendzeist – Google Trends for content ideation in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "trendzeist-hl",
      "description": "TRENDZEIST_HL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "trendzeist-min-interval",
      "description": "TRENDZEIST_MIN_INTERVAL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "trendzeist-proxies",
      "description": "TRENDZEIST_PROXIES",
      "password": true
    }
  ],
  "servers": {
    "trendzeist-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "trendzeist-mcp"
      ],
      "env": {
        "TRENDZEIST_HL": "${input:trendzeist-hl}",
        "TRENDZEIST_MIN_INTERVAL": "${input:trendzeist-min-interval}",
        "TRENDZEIST_PROXIES": "${input:trendzeist-proxies}"
      }
    }
  }
}

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

Trendzeist – Google Trends for content ideation in other clients