Skip to content
VS Code

Stobo SEO & AEO Audit for VS Code

io.github.stobo-app/seo-audit

AI-powered SEO and AEO audit for websites

client:VS Code transport:stdio runtime:pypi

Install Stobo SEO & AEO Audit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stobo-api-key",
      "description": "STOBO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stobo-base-url",
      "description": "STOBO_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "seo-audit": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "stobo-mcp"
      ],
      "env": {
        "STOBO_API_KEY": "${input:stobo-api-key}",
        "STOBO_BASE_URL": "${input:stobo-base-url}"
      }
    }
  }
}

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

Stobo SEO & AEO Audit in other clients