Steam Store Scraper MCP
Pricing
from $0.01 / actor start
Steam Store Scraper MCP
A MCP tool to Search Steam games, fetch game details, user reviews, and featured/discounted games.
Pricing
from $0.01 / actor start
Rating
0.0
(0)
Developer
Muzaffer Kadir YILMAZ
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
3 days ago
Last modified
Categories
Share
An Apify Actor for Steam store data. One actor, four operations selected via
mode: search games, get full game details, read user reviews, and list
featured/discounted games. Built to be exposed as a tool through the
hosted Apify MCP server.
Modes
| Mode | What it does | Required input |
|---|---|---|
search | Search games by name | term |
details | Full details of one game (price, genres, platforms, metacritic…) | appId |
reviews | A game's user reviews (paginated) | appId |
featured | Featured & discounted games | – |
Input
| Parameter | Type | Default | Description |
|---|---|---|---|
mode | string | search | search | details | reviews | featured |
term | string | – | Search term (mode search) |
appId | number | – | Steam App ID (modes details, reviews) |
country | string | us | Country code for region/pricing |
language | string | english | Result language (all for all review languages) |
reviewFilter | string | recent | Ordering: recent | updated | all (mode reviews) |
reviewType | string | all | Sentiment: all | positive | negative (mode reviews) |
purchaseType | string | all | Source: all | steam | non_steam_purchase (mode reviews) |
dayRange | number | – | Look back N days (1-365); only with reviewFilter=all (mode reviews) |
includeOfftopicReviews | boolean | false | Include review-bomb / off-topic activity (mode reviews) |
maxItems | number | all | Limit number of records |
proxyConfiguration | object | none | Optional proxy (helps with rate limits) |
Examples
Search
{ "mode": "search", "term": "Hollow Knight" }
Details
{ "mode": "details", "appId": 367520, "country": "tr" }
Reviews (latest 100)
{ "mode": "reviews", "appId": 367520, "reviewFilter": "recent", "maxItems": 100 }
Featured / discounts
{ "mode": "featured", "country": "us" }
Output
Records are returned in the dataset. The shape depends on mode; every record
includes mode and scrapedAt.
Using as an MCP tool
The actor is available through the hosted MCP server:
https://mcp.apify.com
Add it to any MCP client (Claude Desktop, Cursor, …) with your Apify token. The actor's input and output drive the tool definition and structured results automatically.
Notes
- For heavy use (lots of reviews or many games at once), enable
proxyConfiguration.useApifyProxy. The actor automatically retries and rotates IPs when it runs into rate limits, and paces itself while paging through reviews. - Pricing and availability are region-aware. If a game is missing in
detailsmode, try a differentcountry.