Skip to content
VS Code

looktwice mcp for VS Code

io.github.eason4kim-rocket/looktwice-mcp

Email, EU VAT, IBAN, and domain validation plus evidence-backed U.S. CPSC recall screening.

client:VS Code transport:stdio runtime:npm

Install looktwice mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "looktwice-api-key",
      "description": "LOOKTWICE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "looktwice-base-url",
      "description": "LOOKTWICE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "looktwice-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "looktwice-mcp"
      ],
      "env": {
        "LOOKTWICE_API_KEY": "${input:looktwice-api-key}",
        "LOOKTWICE_BASE_URL": "${input:looktwice-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

looktwice mcp in other clients