Skip to content
VS Code

CrazySEO for VS Code

io.github.bolidee/crazyseo

Audit whether ChatGPT, Gemini and Perplexity recommend a site. Readiness checks need no keys.

client:VS Code transport:stdio runtime:npm

Install CrazySEO in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-api-key",
      "description": "GOOGLE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "perplexity-api-key",
      "description": "PERPLEXITY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "crazyseo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "crazyseo"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "GOOGLE_API_KEY": "${input:google-api-key}",
        "PERPLEXITY_API_KEY": "${input:perplexity-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

CrazySEO in other clients