Skip to main content
Glama

Resolve games to Steam appids

search_games
Read-onlyIdempotent

Resolve one or more game names to their Steam appids on needmoar.games. Call this first to turn a title like "Hollow Knight" into the numeric appid the versus and game_detail tools need. Accepts several names at once — pass every game the user mentioned in a single call and match each to its result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax matches to return per name (1-10, default 5).
queriesYesGame names to look up. Pass every title the user mentioned at once.

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, covering safety and idempotency. The description adds that it accepts multiple names and returns matches, but does not elaborate on response format or potential errors. Given annotations carry the safety burden, the description adds moderate value.

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

Conciseness5/5

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

The description is three sentences, each contributing distinct value: purpose, usage order, and batching instruction. No redundant or extraneous information.

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

Completeness4/5

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

For a simple lookup tool with two parameters and full annotation coverage, the description covers the essential context: when to use, how to batch, and the output mapping. However, it could improve by briefly describing the response structure (e.g., array of matches with appid and name).

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%; both parameters have inline descriptions. The description reiterates the batching advice for 'queries' and default for 'limit', but does not add significant new meaning beyond the schema.

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 title 'Resolve games to Steam appids' and description clearly state the tool's purpose: converting game names to numeric appids. It identifies the specific resource (needmoar.games) and distinguishes from siblings (versus, game_detail) which require appids as input.

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

Usage Guidelines4/5

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

Description explicitly advises to call this tool first and to batch all user-mentioned game names in one call. However, it does not provide explicit guidance on when not to use the tool or alternatives beyond the implied sequence.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool serves a distinct purpose: search_games resolves names to IDs, game_detail provides detailed info for one game, and versus compares two games. No overlap in functionality.

Naming Consistency3/5

Tool names are not consistently patterned: search_games uses verb_noun, game_detail uses noun_noun, versus is a single word. While readable, the inconsistency could be confusing.

Tool Count5/5

Three tools cover the core workflow of looking up games, getting details, and comparing them. The count is well-scoped for the server's purpose.

Completeness5/5

The tool set provides a complete workflow: resolve names, get detailed info, and compare two games. No obvious gaps for the stated community consensus domain.

Resources