Skip to main content
Glama

fetch_reviews

Retrieve actual Steam user reviews using filters for sentiment, purchase type, language, and time period. Pagination and review bomb filtering enable targeted feedback analysis.

Instructions

Fetch actual user reviews for a Steam game with advanced filtering and pagination support. Returns review text, author info, timestamps, and voting data. Supports time-bounded queries and review bomb filtering.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesSteam AppID of the game
limitNoNumber of reviews to fetch (default: 20, max: 100)
cursorNoPagination cursor from previous response. Omit or use an empty string for the first page.
filterNoReview filter (default: all)
dayRangeNoOnly include reviews from the last N days (e.g., 30, 90, 365). Omit or use 0 for all time.
languageNoLanguage code (e.g., "english", "schinese", Steam format)
reviewTypeNoFilter by review sentiment (default: all)
purchaseTypeNoFilter by purchase type (default: all)
steamDeckOnlyNoOnly include Steam Deck reviews (experimental, may not work reliably)
filterOfftopicActivityNoFilter out review bombing and off-topic activity (default: false to show all reviews)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv1.1.1
    • changedInput schema / properties / cursor / description
      Previous value: -"Pagination cursor from previous response"New value: +"Pagination cursor from previous response. Omit or use an empty string for the first page."
    • changedInput schema / properties / dayRange / description
      Previous value: -"Only include reviews from last N days (e.g., 30, 90, 365)"New value: +"Only include reviews from the last N days (e.g., 30, 90, 365). Omit or use 0 for all time."
    • changedInput schema / properties / dayRange / minimum
      Previous value: -1New value: +0
  2. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no supplied annotations, the description carries the behavioral burden. It does describe return contents (review text, author info, timestamps, voting data) and mentions time-bounded queries and review-bomb filtering, which is useful. It does not disclose rendering error behavior, rate limiting, or that the operation is strictly read-only beyond the word 'fetch'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, with each sentence adding a distinct piece of value: what is fetched, what is returned, and which special capabilities are supported. Some wording such as 'actual' and 'advanced' is slightly vague but harmless.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 10-parameter tool with no annotations and no output schema, the description covers the core purpose and return contents but leaves details like cursor-based pagination flow and response shape to be inferred. The schema's high coverage softens this gap, but the description alone is not fully self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 10 parameters. The description adds high-level categories like filtering and pagination but does not add meaning to individual parameters beyond what the schema states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource ('Fetch actual user reviews for a Steam game') and differentiates this tool from siblings like search_steam_games, get_game_info, analyze_reviews, and discussion tools by emphasizing raw review data, review text, pagination, and review-bomb filtering.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied clearly: use this when you need raw user reviews with filtering and pagination. However, it never explicitly names alternatives or explains when to use analyze_reviews or get_game_info instead, so the routing guidance is implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.