npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

wow-dev-mcp

v0.0.3

Published

MCP server for World of Warcraft UI development

Readme

WoW UI Development MCP Server

A Model Context Protocol (MCP) server for World of Warcraft development tools.

Quick Install

Add to Cursor

Install to VScode

Claude Code (run command)

claude mcp add-json wow-dev-mcp '{
  "command": "npx",
  "args": [
    "-y",
    "wow-dev-mcp@latest"
  ],
  "env": {}
}' -s user

General Installation

Available on npm registry and dockerhub via

Note: Use these command and args following your specific mcp client's (vscode/cursor/etc) configuration

npx -y wow-dev-mcp
docker run --rm -i juemrami/wow-dev-mcp

Available Tools

Global Strings Toolkit

  • Search Global Strings search_wow_global_strings – Fuzzy search global string contents matching the provided query.
  • List Global String Keys list_wow_global_string_keys – List all global string keys for a game client version.
  • Get String Translations get_wow_global_string_translations – Retrieve translations for the specified globalKeys.

Support following WoW game client locales (will vary by client version):

  • enUS - English (US)
  • frFR - French
  • deDE - German
  • esMX - Spanish (Mexico)
  • itIT - Italian
  • koKR - Korean
  • ptBR - Portuguese (Brazil)
  • ruRU - Russian
  • zhCN - Chinese (Simplified)
  • zhTW - Chinese (Traditional)

Global API Toolkit

  • Search Global API Names search_wow_global_api_names – Fuzzy search global API names matching the provided query.
  • List Global API Names list_wow_global_api_names – List all valid global API names for a client version.

Warcraft Wiki Related Tools

  • Get Global API Wiki Info get_warcraft_wiki_global_api_info – Fetch wiki page content and links (related page slugs) for the given apiName.
  • Get Warcraft Wiki Page Data get_warcraft_wiki_page_data – Fetch wiki page content and links for the given page slug.

Both toolkits support multiple WoW game client flavors:

  • mainline - Current retail version
  • mists - Mists of Pandaria Classic
  • vanilla - Classic Era WoW (incl. Hardcore/SoD)

Note: You may need to specify to the agent to use a specific game flavor todo: add tool/prompt for scanning .toc file to determine best client flavor(s)

Known Issues

  • you may have to try really hard to get your llm to use optional tool parameters correctly. Depends on model.

Development

Requirements

[email protected]

Install from Source

Setup example Vscode

To use this mcp server in dev with, for example VS Code and GitHub Copilot:

  1. Open VS Code
  2. Open the User or Workspace mcp.json config file
  • Using the command palette, search for and select:
    • "MCP: Open User Configuration"
    • or "MCP: Open Workspace Configuration"
  1. Modify the servers section by adding the the project as a stdio mcp server:
{
"servers" : {
    // ... other mcp servers
    "wow-dev-mcp": {
        "type": "stdio",
        "command": "pnpm",
        // replace 'path/to/project' with your actual project path
        "args": [
            "tsx",
            "--watch",
            "path/to/project/src/main.ts"
        ]
    }
}
}

Building

pnpm build

Testing

pnpm vitest

Credits

  • Global strings directory referenced from https://github.com/Ketho/BlizzardInterfaceResources