Skip to content
VS Code

solvegate mcp for VS Code

io.github.solvegate/solvegate-mcp

Inspect a page for Cloudflare Turnstile free, and clear Turnstile and WAF challenges.

client:VS Code transport:stdio runtime:npm

Install solvegate mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "solvegate-api-key",
      "description": "SOLVEGATE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solvegate-base-url",
      "description": "SOLVEGATE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solvegate-site-url",
      "description": "SOLVEGATE_SITE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solvegate-timeout-ms",
      "description": "SOLVEGATE_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solvegate-max-wait-ms",
      "description": "SOLVEGATE_MAX_WAIT_MS",
      "password": true
    }
  ],
  "servers": {
    "solvegate-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "solvegate-mcp"
      ],
      "env": {
        "SOLVEGATE_API_KEY": "${input:solvegate-api-key}",
        "SOLVEGATE_BASE_URL": "${input:solvegate-base-url}",
        "SOLVEGATE_SITE_URL": "${input:solvegate-site-url}",
        "SOLVEGATE_TIMEOUT_MS": "${input:solvegate-timeout-ms}",
        "SOLVEGATE_MAX_WAIT_MS": "${input:solvegate-max-wait-ms}"
      }
    }
  }
}

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

solvegate mcp in other clients