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

steam-storefront-mcp

v1.0.2

Published

MCP server for Steam Storefront public metadata — game tags, genres, categories, descriptions, and user review sentiment.

Readme

steam-storefront-mcp

An MCP (Model Context Protocol) server that gives AI assistants access to public Steam Storefront metadata, official genres, categories, and player review sentiment via structured Steam JSON APIs.

Search for games on Steam, retrieve official store details, and analyze Steam player review ratings — all without needing a Steam API key.


Tools

| Tool | Parameters | Description | |------|------------|-------------| | search_store | term (string) | Search Steam Storefront by game title query — returns matching games with AppIDs via structured JSON API. | | get_store_details | appId (number) | Get official store metadata (genres, categories, short/detailed description, developers, publishers, metacritic score, platforms, release date). | | get_app_reviews | appId (number) | Get Steam player review statistics (positive review percentage, total review count, rating score string e.g. "Overwhelmingly Positive"). |


Prerequisites

  • Node.js v18 or later
  • No API keys or Steam account required — this server uses public Steam Storefront endpoints.

Installation & Configuration

Option A — npx (Recommended, no install required)

Add the following to your MCP client config file:

{
  "mcpServers": {
    "steam-storefront": {
      "command": "npx",
      "args": ["-y", "steam-storefront-mcp"]
    }
  }
}

Option B — Clone and build locally

git clone https://github.com/brandikun/steam-storefront-mcp.git
cd steam-storefront-mcp
npm install
npm run build

Then add to your MCP config:

{
  "mcpServers": {
    "steam-storefront": {
      "command": "node",
      "args": ["/absolute/path/to/steam-storefront-mcp/dist/index.js"]
    }
  }
}

MCP Client Config Locations

| Client | Config File Location | |--------|----------------------| | Antigravity / AGY | ~/.gemini/antigravity-cli/settings.json or mcp_config.json | | Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json | | Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |


Example Usage

Once connected, you can ask your AI assistant questions like:

  • "What is the Steam review consensus for Vampire Crawlers?"
  • "Search Steam for Elden Ring to get its AppID"
  • "Find out if Hades II supports full controller support, co-op, and Steam Deck"

Performance & Caching

| Feature | Details | |---------|---------| | In-Memory Cache | All Steam Storefront API and store page requests are cached in memory for 1 hour (3600s). | | Rate Limit Protection | Repeated lookups for the same game use 0 network requests. |


License

MIT