Skip to content
VS Code

Hated WoW MCP for VS Code

io.github.rdygaming/hated-wow-mcp

MCP server for WoW addons: Lua API, Blizzard UI source, CVars, art lookup, linting, scaffolding.

client:VS Code transport:stdio runtime:npm

Install Hated WoW MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wow-default-flavor",
      "description": "WOW_DEFAULT_FLAVOR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wow-install-path",
      "description": "WOW_INSTALL_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wow-addon-path",
      "description": "WOW_ADDON_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wow-mcp-data-dir",
      "description": "WOW_MCP_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "hated-wow-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hated-wow-mcp"
      ],
      "env": {
        "WOW_DEFAULT_FLAVOR": "${input:wow-default-flavor}",
        "WOW_INSTALL_PATH": "${input:wow-install-path}",
        "WOW_ADDON_PATH": "${input:wow-addon-path}",
        "WOW_MCP_DATA_DIR": "${input:wow-mcp-data-dir}"
      }
    }
  }
}

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

Hated WoW MCP in other clients