Skip to main content
Glama
hcross

Videogame Encyclopedia MCP Server

by hcross

steam_get_game_news

Retrieve recent news and announcements for a Steam game by entering its App ID. Get official updates to keep players informed about patches and events.

Instructions

Get the latest news and announcements for a specific Steam game.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appidYesSteam App ID of the game
countNoNumber of news items to fetch (default: 5)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does not mention that this is a read-only operation, whether it requires authentication, rate limits, or what the response format looks like. The description only states the basic action, leaving the agent without important behavioral context.

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 a single, concise sentence that front-loads the core purpose. It earns its place without unnecessary detail, though it could add a bit more context without becoming verbose.

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

Completeness2/5

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

For a tool with no annotations and no output schema, the description is too thin. It does not explain the return structure, pagination behavior, or any edge cases like invalid appids. An agent would need to infer too much to use it correctly in varied contexts.

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 both parameters. The description adds no extra meaning beyond the schema, but the baseline of 3 is appropriate because the schema fully covers parameter semantics.

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

Purpose4/5

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

The description states a clear verb ('Get') and resource ('latest news and announcements for a specific Steam game'), which distinguishes it from sibling tools like steam_get_details or steam_get_reviews_summary. It could be slightly more specific about the news feed source, but it is unambiguous enough.

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 description implies usage for fetching game news but does not explicitly state when to prefer this over alternatives or mention any exclusions. Sibling tools cover other game data, so an agent can infer the use case, but there is no direct guidance on when not to use it.

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