Skip to content
VS Code

GEO Tracker by DigestSEO for VS Code

io.github.akzar1el/mcp-geo

Track brand citations across seven AI search surfaces. Free OSS; optional EUR 99 client-ready audit.

client:VS Code transport:stdio runtime:npm

Install GEO Tracker by DigestSEO in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "perplexity-api-key",
      "description": "PERPLEXITY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xai-api-key",
      "description": "XAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "serpapi-api-key",
      "description": "SERPAPI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "serpapi-ai-mode-enabled",
      "description": "SERPAPI_AI_MODE_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "mcp-geo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@digestseo/mcp-geo"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "PERPLEXITY_API_KEY": "${input:perplexity-api-key}",
        "XAI_API_KEY": "${input:xai-api-key}",
        "SERPAPI_API_KEY": "${input:serpapi-api-key}",
        "SERPAPI_AI_MODE_ENABLED": "${input:serpapi-ai-mode-enabled}"
      }
    }
  }
}

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

GEO Tracker by DigestSEO in other clients