Skip to content
VS Code

geo analyzer for VS Code

io.github.houtini-ai/geo-analyzer

Scores content on the signals that get it cited by ChatGPT, Perplexity and AI Overviews

client:VS Code transport:stdio runtime:npm

Install geo analyzer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "geo-analyzer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@houtini/geo-analyzer"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

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

geo analyzer in other clients