wow-addon-api-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wow-addon-api-mcpCompare C_Timer.After between 10.0.0 and 12.1.0"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WoW AddOn API MCP
A standalone, version-aware Model Context Protocol server for the World of Warcraft retail AddOn API. It ships pinned documentation snapshots inside the npm package, so users do not need VS Code, the ketho.wow-api extension, Lua, Git, WSL, or a live network connection after installation.
The archive currently contains 26 retail patch snapshots from 10.0.0 through 12.1.0. The default dataset is WoW 12.1.0.69283 and includes Blizzard's secret-value and restricted-API metadata. Every result identifies the selected patch and build so an LLM does not silently mix APIs from different versions.
Install
Node.js 20 or newer is required. The easiest Codex setup is:
codex mcp add wow-addon-api -- npx -y wow-addon-api-mcp@latestVerify it with codex mcp list, then restart any already-running Codex session that should use it.
For a project-local Codex configuration, add this on macOS or Linux:
[mcp_servers.wow-addon-api]
command = "npx"
args = ["-y", "wow-addon-api-mcp@latest"]On Windows:
[mcp_servers.wow-addon-api]
command = "cmd"
args = ["/c", "npx", "-y", "wow-addon-api-mcp@latest"]Save the file as .codex/config.toml in the project. The same stdio command works with Claude Desktop and other MCP clients:
{
"mcpServers": {
"wow-addon-api": {
"command": "npx",
"args": ["-y", "wow-addon-api-mcp@latest"]
}
}
}Use "command": "cmd" and prefix the arguments with "/c" on Windows if the client does not resolve npx directly.
Related MCP server: wow-api-mcp
What it knows
Global and
C_namespace functions, methods, arguments, returns, and documentationFrame events and payloads
Enumerations and structures
Blizzard
ScriptObjectwidgets under public names such asFrameandButtonPublic methods discovered from intrinsic FrameXML widgets such as
AuraContainerandAuraButtonRaw API constraints including
SecretArguments,HasRestrictions,RequiresUnitAuraAccess,ConditionalSecretContents,NeverSecret, and related fieldsThe exact upstream client build, commit, and source file for each snapshot
The server exposes these tools:
Tool | Purpose |
| Resolve a version and show its WoW build, upstream commit, and entry counts |
| List every supported retail patch, build, date, and source commit |
| Exact lookup across functions, methods, events, enums, structures, widgets, and systems |
| Ranked name and official-documentation search |
| List a namespace's functions, events, and types |
| Show direct and inherited widget methods |
| Show an enum and its values |
| Show an event and its payload |
| Find security-, taint-, secret-, combat-, and aura-restricted APIs |
| Compare one exact API between two retail patches |
| List added, removed, and structurally changed APIs, optionally by kind or namespace |
| Show when an exact API appeared, disappeared, or changed |
All single-version query tools accept an optional version. It can be a patch (12.1.0 or 12.1), full client version (12.1.0.69283), build number (69283), or latest. Omitting it selects the manifest's current default.
For an old-addon migration, a useful LLM workflow is:
Call
list_versionsand choose the closest source patch.Use
compare_apifor APIs the addon already calls.Use a namespace-filtered
diff_versionsto discover related changes.Use
get_api_historywhen the exact transition is unclear.Query the current patch normally and preserve all returned restriction metadata.
Check the installed data without starting an MCP session:
npx -y wow-addon-api-mcp@latest --dataset-info
npx -y wow-addon-api-mcp@latest --list-versionsHow freshness works
flowchart LR
A["Gethe/wow-ui-source live"] --> B["Scheduled refresh every 6 hours"]
B --> C["Parse and validate generated docs + intrinsic FrameXML"]
C --> D["Update the current patch snapshot and manifest"]
D --> E["Reviewable data/version pull request"]
E --> F["Test and publish npm release with provenance"]
F --> G["npx users receive the new pinned archive"]The parser evaluates a deliberately small, non-executing subset of Lua table syntax. It never runs Blizzard Lua. Builds fail if the source becomes structurally incompatible, shrinks unexpectedly, loses expected security metadata, or fails the MCP integration tests. The compressed snapshots are deterministic, so the refresh workflow opens a pull request only when pinned source content or provenance changes. A new patch adds a snapshot; a later build in the current patch replaces that patch's canonical snapshot without blending its entries with another version.
The official Blizzard documentation tables mirrored by Gethe are the API authority. The public widget-name conventions are adapted from Ketho/vscode-wow-api, while the MCP query model was informed by spartanui-wow/wow-api-mcp. Neither project nor VS Code is required at build or runtime.
Local development
npm ci
npm run data:update
npm test
npm run pack:checkdata:update maintains an ignored checkout at .cache/wow-ui-source, rebuilds the current retail snapshot under data/retail/, and updates data/manifest.json. To build from an existing checkout instead:
node scripts/build-dataset.mjs --source /path/to/wow-ui-sourceMaintainers can deterministically rebuild the historical archive from the upstream Git history:
npm run data:history
node scripts/build-history.mjs --from 11.0.0 --to 12.1.0The history command selects the newest upstream source commit explicitly labeled for each retail patch family. See CONTRIBUTING.md for change guidance and docs/PUBLISHING.md for the one-time npm/GitHub setup.
Scope and attribution
This package targets retail patch families from 10.0.0 onward. It stores one canonical source snapshot per supported patch family, not every hotfix build. Classic-family datasets can be added later without mixing them into the retail catalog, but are not currently shipped. Community wiki prose and APIs absent from every retained Blizzard source snapshot are not treated as authoritative.
World of Warcraft and Blizzard Entertainment are trademarks or registered trademarks of Blizzard Entertainment, Inc. This project is not affiliated with or endorsed by Blizzard Entertainment. See THIRD_PARTY_NOTICES.md.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityFmaintenanceA comprehensive MCP server that wraps the complete World of Warcraft retail API into 197 tools for Game Data and Profile information. It enables users to query character statistics, achievements, collections, and game mechanics across all global regions and locales.7
- Alicense-qualityCmaintenanceMCP server that exposes structured World of Warcraft API data (functions, deprecated replacements, enums, events, widget methods) to AI agents, enabling querying and exploration of WoW API without wiki parsing.1512MIT
- Flicense-qualityCmaintenanceMCP server that gives LLMs live access to warcraft.wiki.gg API documentation with behavioral notes, restrictions, and patch history for World of Warcraft APIs.1
- AlicenseAqualityBmaintenanceAn MCP server that gives AI coding assistants access to the World of Warcraft addon API documentation, FrameXML/AddOn UI source code, and the Warcraft Wiki across all four client flavors.918MIT
Related MCP Connectors
MCP server for accessing curated awesome list documentation
MCP server for skill documentation, generated by doc2mcp.
MCP server for doc2mcp documentation, generated by doc2mcp.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Koodattu/wow-addon-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server