Skip to content
VS Code

linkrescue mcp for VS Code

io.github.carsonroell-debug/linkrescue-mcp

Broken link detection with affiliate tracking, revenue loss estimation, and fixes

client:VS Code transport:stdio runtime:pypi

Install linkrescue mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "linkrescue-api-base-url",
      "description": "LINKRESCUE_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "linkrescue-api-key",
      "description": "LINKRESCUE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "linkrescue-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "linkrescue-mcp"
      ],
      "env": {
        "LINKRESCUE_API_BASE_URL": "${input:linkrescue-api-base-url}",
        "LINKRESCUE_API_KEY": "${input:linkrescue-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

linkrescue mcp in other clients