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

wise-old-man-mcp-server

v1.1.0

Published

MCP server for the Wise Old Man OSRS player tracker API. Retrieve player stats, track gains, and get efficiency rates for Old School RuneScape.

Readme

Wise Old Man MCP Server

MCP server for the Wise Old Man API and OSRS Wiki — an Old School RuneScape player progress tracker.

Enables LLMs (via Claude Desktop, Claude Code, or any MCP client) to look up OSRS player stats, track quest progress, check efficiency rates, and more.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "wise-old-man": {
      "command": "npx",
      "args": ["-y", "wise-old-man-mcp-server"]
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Restart Claude Desktop after saving.

Claude Code

claude mcp add wise-old-man -- npx -y wise-old-man-mcp-server

Tools

| Tool | Description | |------|-------------| | search_players | Search players by partial username | | get_player_details | Full stats: skills, bosses, EHP/EHB, combat level | | update_player | Refresh player data from OSRS hiscores | | get_player_gains | XP and kill count gains over a time period | | get_player_records | Personal best records | | get_player_achievements | Completed milestones and progress | | get_player_snapshot_timeline | Historical data for a specific metric | | get_ehp_rates | Efficient Hours Played rates (best XP/hr methods) | | get_ehb_rates | Efficient Hours Bossed rates (kills/hr per boss) | | get_efficiency_leaderboard | Global efficiency rankings | | Quest Tools | | | get_quest_status | Quest completion status via WikiSync | | get_quest_details | Full quest info: requirements, items, rewards | | search_quests | Search/filter quests by name, difficulty, length | | get_available_quests | Find quests a player can start based on their stats |

Example Prompts

  • "What are the stats for Zezima?"
  • "How much XP did Lynx Titan gain this week?"
  • "What are the best training methods for Mining?"
  • "Show me the EHB rates for ironman accounts"
  • "Who's at the top of the EHP leaderboard?"
  • "Which quests has IJowin completed?"
  • "What are the requirements for Dragon Slayer II?"
  • "What quests can IJowin start right now?"

Note: Quest tools that show player-specific data (get_quest_status, get_available_quests) require the player to have the WikiSync RuneLite plugin installed.

API Key (Optional)

By default the server uses the public rate limit (20 requests/minute). To increase this to 100 requests/minute, get a free API key from Wise Old Man and add it:

{
  "mcpServers": {
    "wise-old-man": {
      "command": "npx",
      "args": ["-y", "wise-old-man-mcp-server"],
      "env": {
        "WOM_API_KEY": "your-api-key-here"
      }
    }
  }
}

License

MIT