Steam Review

by fenxer

1 stars
557 downloads
Not rated
GitHub

About

Integrates with Steam's API to fetch and analyze game reviews and information, enabling customizable queries for player feedback, sentiment tracking, and game details.

Details

Author
fenxer
Repository
fenxer/steam-review-mcp
GitHub stars
1
Downloads
557
License
MIT License
Categories
Design, Workplace, Developer Tools, AI, Communication, Knowledge Base, API, Database

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

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Steam Review
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 steam-review-mcp

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

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"
      ]
    }
  }
}

npm install

get_steam_review

Retrieves reviews and game information by passing a Steam game appid.

summarize-reviews

Provides 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

Analyzes recent game reviews, summarizing the current state of the game and player feedback. Parameters: appid (required): Steam game ID, e.g., 570 (Dota 2).

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:
- success: Whether the query was successful
- review_score: Review score
- review_score_desc: Review score description
- total_positive: Total positive reviews
- total_negative: Total negative reviews
- reviews: All review text content (without other metadata)

2. game_info:
- name: Game name
- detailed_description: Detailed game description

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

Linux

{
    "env": [],
    "args": [
        "steam-review-mcp"
    ],
    "shell": false,
    "command": "npx"
}

Macos

{
    "env": [],
    "args": [
        "steam-review-mcp"
    ],
    "shell": false,
    "command": "npx"
}

Windows

{
    "env": [],
    "args": [
        "/c",
        "npx",
        "steam-review-mcp"
    ],
    "shell": false,
    "command": "cmd"
}

Steam Review MCP

English | 中文

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

MCP Badge

Install MCP Server

<a href="https://glama.ai/mcp/servers/@fenxer/steam-review-mcp">

</a>

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:
- success: Whether the query was successful
- review_score: Review score
- review_score_desc: Review score description
- total_positive: Total positive reviews
- total_negative: Total negative reviews
- reviews: All review text content (without other metadata)

2. game_info:
- name: Game name
- 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

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.