logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

steam-review-mcp

Retrieve and analyze Steam game reviews and information for detailed insights. Summarize pros and cons of games and access recent player feedback based on Steam's appid.

Author

steam-review-mcp logo

fenxer

MIT License

Quick Info

GitHub GitHub Stars 6
NPM Weekly Downloads 0
Tools 1
Last Updated 2026-02-19

Tags

steamfenxerreviewssteam reviewfenxer steamgame reviews

Steam Review MCP

English | 中文

Access Steam game reviews using Model Context Protocol (MCP).

smithery badge

Install MCP Server

badge

Features

Helps LLMs retrieve Steam game reviews and information:

  • Get game reviews (positive/negative counts, review scores, review content, etc.)
  • Get game basic information (name, detailed description)
  • Analyze game reviews and summarize pros and cons

Installation

Installing via Smithery

To install Steam Review for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @fenxer/steam-review-mcp --client claude

Run it directly with npx:

npx steam-review-mcp

or add:

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

Usage

Tools

This MCP service provides the get_steam_review tool, which retrieves reviews and game information by passing a Steam game appid.

For more details, check the Steamwork API: User Reviews - Get List

The returned data contains two parts:

  1. game_reviews:
  2. success: Whether the query was successful
  3. review_score: Review score
  4. review_score_desc: Review score description
  5. total_positive: Total positive reviews
  6. total_negative: Total negative reviews
  7. reviews: All review text content (without other metadata)

  8. game_info:

  9. name: Game name
  10. detailed_description: Detailed game description

Prompts

summarize-reviews

For overall game review analysis, summarizing the pros and cons of the game.

Parameters
  • appid (required): Steam game ID, e.g., 570 (Dota 2)

recent-reviews-analysis

For analyzing recent game reviews, summarizing the current state of the game and player feedback.

Parameters
  • appid (required): Steam game ID, e.g., 570 (Dota 2)

Development

# Install dependencies
npm install

# Build project
npm run build

# Run service
npm start

See Also

`