Hated WoW MCP server
MCP server for WoW addons: Lua API, Blizzard UI source, CVars, art lookup, linting, scaffolding.
5 stars453 downloads/wk
Reviews
Write oneNobody has reviewed Hated WoW MCP yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Hated WoW MCP tools
No tool declarations could be read from the package source. They show once the server is installed.
Public scan report
scanner v0.1.5 · 2026-09-19 · same rubric, same numbers if you re-run it
- Code scan58 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 1 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
What the publisher says
From the Hated WoW MCP repository's README, as published. We do not edit it. Read it on GitHub
Hated WoW MCP
An MCP server for writing World of Warcraft addons. Free and open source.
It gives your AI assistant three things it otherwise guesses at: the in-game Lua API for the client you are targeting, Blizzard's own shipped UI source so it can see how the game itself does something, and the game's art and file data so texture references are real rather than invented.
20 tools. Setup for Claude Code, Claude Desktop, Cursor, Cline, Antigravity, Codex and VS Code is below, and anything else that speaks MCP works too. Or browse them in a local web UI with no AI at all.
### ☕ Support this project
Hated WoW MCP is free and always will be. If it saves you time, you can buy me
a coffee — it genuinely helps keep it maintained through patch cycles.
### buymeacoffee.com/rdygaming
Everything here is about code that runs inside the client. There is no Battle.net web API in this server — no armory lookups, no auction house.
Quick start
Requires Node 20+. Nothing to clone, nothing to build.
Claude Code
claude mcp add wow -- npx -y hated-wow-mcpAdd -s user to make it available in every project instead of just the current one. Verify with claude mcp list.
Claude Desktop
Edit your config file:
Windows Store install? If that path doesn't exist, look under
%LOCALAPPDATA%\Packages\Claude_*\LocalCache\Roaming\Claude\ instead.
Add the mcpServers block. If the file already has other keys, keep them — merge this in rather than replacing the file:
{
"mcpServers": {
"wow": {
"command": "npx",
"args": ["-y", "hated-wow-mcp"],
"env": {
"WOW_DEFAULT_FLAVOR": "mainline"
}
}
}
}Then fully quit Claude Desktop from the system tray and reopen it — closing the window is not enough, and the config is only read at startup.
Other clients
It is a standard stdio MCP server, so any MCP client can run it. What differs is the config format. The shapes below come from each client's own documentation.
VS Code uses a different top-level key from everyone else:
{
"servers": {
"wow": { "command": "npx", "args": ["-y", "hated-wow-mcp"] }
}
}Codex reads TOML, not JSON. Either run codex mcp add wow -- npx -y hated-wow-mcp or add this to ~/.codex/config.toml:
[mcp_servers.wow]
command = "npx"
args = ["-y", "hated-wow-mcp"]
env = { WOW_DEFAULT_FLAVOR = "mainline" }
startup_timeout_sec = 30Raise startuptimeoutsec from Codex's default of 10. The first npx run has to download the package, which took about 9 seconds on a fast connection and would time out on a slower one. Claude Code has the same knob as MCP_TIMEOUT.
On Windows, some clients start servers without a shell, and plain npx then fails to launch at all (ENOENT). Wrap it in cmd:
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
Runs npx -y hated-wow-mcp on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add hated-wow-mcp -- npx -y hated-wow-mcp
Hated WoW MCP: common questions
- Is Hated WoW MCP server safe?
- Yes, by our scan: it is graded A (92/100). Read the Hated WoW MCP safety report
- How do I install Hated WoW MCP?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Hated WoW MCP need an API key?
- No secret keys are declared. It reads 4 settings from the environment.
- Is Hated WoW MCP maintained?
- The last commit was 2 days ago (2026-09-18). The latest release is v0.6.1.