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

@iflow-mcp/fenxer_steam-review-mcp

v1.0.2

Published

Get reviews from steam store with appid

Readme

Steam Review MCP

English | 中文

使用 Model Context Protocol (MCP) 获取 Steam 游戏评测。

功能

帮助 LLM 获取 Steam 游戏的评测和游戏信息:

  • 获取游戏评测(正面/负面评价数量、评测分数、评测内容等)
  • 获取游戏基本信息(名称、详细描述)
  • 分析游戏评测,总结游戏的优缺点

安装

直接使用 npx 运行:

npx steam-review-mcp

或自行添加:

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

使用方法

工具 (Tools)

这个 MCP 服务提供了 get_steam_review 工具,可以通过传入 Steam 游戏的 appid 来获取评测和游戏信息。

详细可查看 Steamwork API: User Reviews - Get List

返回的数据包含两部分:

  1. game_reviews

    • success:查询是否成功
    • review_score:评测分数
    • review_score_desc:评测分数描述
    • total_positive:正面评测总数
    • total_negative:负面评测总数
    • reviews:所有评测的文本内容(不包含其他元数据)
  2. game_info

    • name:游戏名称
    • detailed_description:游戏详细描述

提示模板 (Prompts)

summarize-reviews

用于游戏的整体分析游戏评测,总结游戏的优缺点。

参数
  • appid(必需):Steam 游戏的 ID,例如 570(Dota 2)

recent-reviews-analysis

用于分析游戏的最近评测,总结游戏的当前状态和玩家反馈。

参数
  • appid(必需):Steam 游戏的 ID,例如 570(Dota 2)

开发

# 安装依赖
npm install

# 构建项目
npm run build

# 运行服务
npm start