Skip to content
VS Code

WrapGuard MCP for VS Code

io.github.yuni9959/wrapguard-mcp

Detect unnatural Korean and English mid-word wrapping in responsive web pages.

client:VS Code transport:stdio runtime:npm

Install WrapGuard MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wrapguard-server-name",
      "description": "WRAPGUARD_SERVER_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wrapguard-config",
      "description": "WRAPGUARD_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "wrapguard-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wrapguard-mcp"
      ],
      "env": {
        "WRAPGUARD_SERVER_NAME": "${input:wrapguard-server-name}",
        "WRAPGUARD_CONFIG": "${input:wrapguard-config}"
      }
    }
  }
}

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

WrapGuard MCP in other clients