wow-site-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-site-mcpshow me the gear and talents for my druid Altair on the realm Barthilas"
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-site
wow-site is a personal World of Warcraft fan site served at
https://wow.batserver.au. It uses hand-authored HTML, CSS and JavaScript with
no framework or build step, plus a small dependency-free Node server for the
Blizzard character equipment API.
Contents
site/index.html— landing page and tool indexsite/gear-advisor.html— gear advisor toolsite/styles.css— shared site themesite/gear-advisor.css/site/gear-advisor.js— gear advisor onlysite/season-data.js— shared season tracks and Blizzard bonus-ID mappingsite/assets/— favicon and imagesserver.mjs— static delivery, Blizzard API adapter and in-memory cachesmcp_server.py— official SDK v2 MCP surface backed by the same character APIDockerfile.mcp/requirements-mcp.txt— isolated MCP sidecar imagetest/— Node's built-in test suite
Related MCP server: wow-mcp
Tools
Gear advisor
Compares the season's gear upgrade tracks against your item level. Move the slider and each rank re-colours as an upgrade, sidegrade or downgrade; each track also reports the first rank that beats you and what it costs in crests.
Season numbers and Blizzard upgrade bonus IDs are patch-specific and live in
one place: site/season-data.js.
The character lookup uses Blizzard's server-to-server client credentials flow. Character equipment is cached in memory for five minutes. Simultaneous requests for the same character are coalesced, and Refresh now can bypass the normal cache after a one-minute cooldown. Blizzard media responses and the OAuth token have their own longer-lived caches. Region-specific realm dropdowns come from Blizzard's Realm Index API and are cached for one day. The selector starts with a safe placeholder and a short useful option list, fills in during browser idle time, and keeps the fetched list plus the visitor's last regional selection in browser storage for immediate subsequent visits.
Current Season 2 tracks are resolved from Blizzard's item bonus_list, not
inferred from item level. Items without a known current-season bonus are shown
as legacy/unknown, while special Ascendant items get an explicit special state.
Independently of that provenance, every equipped slot compares its item level
with each Season 2 track and shows the first rank on that track that would be a
strict item-level upgrade. This detailed comparison is collapsed independently
on each item card so the current-path summary remains the primary view.
MCP v2
The public Streamable HTTP endpoint at /mcp uses the official Python SDK v2
and exposes five read-only structured tools:
get_character_equipmentreturns the same character, item, current-path, replacement-threshold, fetch-time, and cache data used by the site.get_character_talentsreturns the active specialization, hero tree, current class/spec/hero talent selections, and in-game import code.get_character_profilereturns compact identity and progression context, including item levels, achievement points, current-season Mythic+ rating, and best runs.get_character_achievementsreturns completion totals, points, and up to 25 recent achievements without emitting the full multi-thousand-entry history.list_realmsreturns Blizzard realm IDs, display names, and slugs for a region so an agent can validate lookup inputs.
All tools call the existing internal JSON API, so they share its 60-request
per-minute caller limit, five-minute character cache, one-day realm cache,
request coalescing, and forced-refresh cooldown. Every tool call, including
validation, upstream, and rate-limit errors, is written as structured JSON to
container logs and /data/queries.jsonl. Audit records include the query,
outcome, duration, cache status, protocol/client metadata, and caller address;
they never contain Blizzard credentials or access tokens. The persistent file
is created with mode 0640 inside a 0750 state directory.
Run locally
npm test
docker build -t wow-site .
docker run --rm --env-file /path/to/wow-site.env -p 8080:80 wow-siteThen open http://localhost:8080.
Deployment
Production is defined in the infrastructure repository's canonical Compose file
at /mnt/docker/infra/config/dockerconfigs/docker-compose.yml, as the
wow-site and wow-site-mcp services. Both build from this directory, so a
full deploy is:
docker compose -p config -f /mnt/docker/infra/config/dockerconfigs/docker-compose.yml \
up -d --build wow-site wow-site-mcpTraefik routes wow.${DOMAIN_PRIMARY} to the site on port 80 and gives the
path-specific /mcp route to the MCP sidecar on port 8767.
Production loads ${MOUNT_STATE}/secrets/wow-site.env, containing:
BLIZZARD_CLIENT_ID=...
BLIZZARD_CLIENT_SECRET=...Optional tuning variables are CHARACTER_CACHE_TTL_SECONDS (default 300),
REFRESH_COOLDOWN_SECONDS (default 60), MEDIA_CACHE_TTL_SECONDS (default
86400), REALM_CACHE_TTL_SECONDS (default 86400), and
BLIZZARD_TIMEOUT_MS (default 10000).
Notes
The site is currently public — no authentication.
*.batserver.auresolves to the WAN address, so anything served here is internet-reachable.The public lookup neither saves nor presets a personal character. Persistent personal character state belongs under the reserved
/my/URL prefix, which remains empty and can be put behind auth later.robots.txtdisallows crawling.
This server cannot be installed
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
- Alicense-quality-maintenanceProvides comprehensive World of Warcraft guild analytics, player character analysis, and auction house market data through the Blizzard Battle.net API. Supports both Retail and Classic WoW with real-time market insights, guild roster management, and demographic analytics.
- 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
- Flicense-qualityDmaintenanceEnables AI assistants to look up World of Warcraft character information and reputation from Blizzard's Armory website.
- Flicense-qualityCmaintenanceMCP server for World of Warcraft that provides 26 tools for accessing characters, guilds, realms, game data, and auction house info via Blizzard's Battle.net APIs. It enables natural-language queries for character audits, Mythic+ reviews, market analysis, and more.
Related MCP Connectors
Wynncraft MMO player + guild + leaderboard + item DB lookups.
Bungie.net Destiny 2 + clan API: manifest, profile, characters, stats.
Guild Wars 2 keyless public endpoints (worlds, items, achievements, build, commerce).
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/consecrated-hammer/wow-site'
If you have feedback or need assistance with the MCP directory API, please join our Discord server