Skip to content
VS Code

pseolint for VS Code

io.github.ouranos-labs/pseolint

Penalty-risk audit for programmatic SEO sites: verdict, risk score, and a fix manifest.

client:VS Code transport:stdio runtime:npm

Install pseolint in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pseolint-mcp-sample-cap",
      "description": "PSEOLINT_MCP_SAMPLE_CAP",
      "password": true
    }
  ],
  "servers": {
    "pseolint": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pseolint/mcp"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "PSEOLINT_MCP_SAMPLE_CAP": "${input:pseolint-mcp-sample-cap}"
      }
    }
  }
}

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

pseolint in other clients