Get reviews from steam store with appid
npm install steam-review-mcpEnglish | 中文
Access Steam game reviews using Model Context Protocol (MCP).
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
Run it directly with npx:
``bash`
npx steam-review-mcp
or add:
`json`
{
"mcpServers": {
"steam-review-mcp": {
"command": "npx",
"args": [
"steam-review-mcp"
]
}
}
}
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 successfulreview_score
- : Review scorereview_score_desc
- : Review score descriptiontotal_positive
- : Total positive reviewstotal_negative
- : Total negative reviewsreviews
- : All review text content (without other metadata)
2. game_info:name
- : Game namedetailed_description
- : Detailed game description
#### 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)
`bashInstall dependencies
npm install