Skip to main content
Glama

Player Matches

player_matches
Read-onlyIdempotent

Fetch a Dota 2 player's recent match history by Steam account id. Returns one row per match: match id, duration, start time, game mode, Radiant win flag, plus this player's heroId, side, win/loss, K/D/A, last hits, GPM/XPM, level and IMP. Supports pagination via take/skip.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skipNo
takeNo
_apiKeyYesYour own STRATZ API token (BYO — Pipeworx does not supply one). Free at https://stratz.com/api after Steam sign-in.
steam_account_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "steam_account_id": 123456789
      -  },
      -  {
      -    "skip": 0,
      -    "steam_account_id": 123456789,
      -    "take": 10
      -  }
      -]New value: +[
      +  {
      +    "_apiKey": "your-stratz-api-token",
      +    "steam_account_id": 123456789
      +  },
      +  {
      +    "_apiKey": "your-stratz-api-token",
      +    "skip": 0,
      +    "steam_account_id": 123456789,
      +    "take": 10
      +  }
      +]
    • addedInput schema / properties / _apiKey
      Added value: +{
      +  "description": "Your own STRATZ API token (BYO — Pipeworx does not supply one). Free at https://stratz.com/api after Steam sign-in.",
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "steam_account_id"
      -]New value: +[
      +  "steam_account_id",
      +  "_apiKey"
      +]
  2. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "steam_account_id": 123456789
      -  },
      -  {
      -    "mode": "ALL_PICK",
      -    "skip": 0,
      -    "steam_account_id": 123456789,
      -    "take": 10
      -  }
      -]New value: +[
      +  {
      +    "steam_account_id": 123456789
      +  },
      +  {
      +    "skip": 0,
      +    "steam_account_id": 123456789,
      +    "take": 10
      +  }
      +]
  3. Changed1 schema field changed
    • removedInput schema / properties / mode
      Removed value: -{
      -  "type": "string"
      -}
  4. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "steam_account_id": 123456789
      +  },
      +  {
      +    "mode": "ALL_PICK",
      +    "skip": 0,
      +    "steam_account_id": 123456789,
      +    "take": 10
      +  }
      +]
  5. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already communicate read-only, open-world, idempotent, and non-destructive behavior. The description adds concrete behavioral detail beyond that: one row per match, a field list, and pagination via take/skip. It does not cover result limits or edge cases, but the annotations lower the burden.

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?

Two sentences with no filler: the first states the primary action and resource, the second covers output shape and pagination. Every sentence earns its place and the description avoids repeating schema details.

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 read-only history tool with no output schema, the description is nearly complete: it specifies the input identifier, optional pagination, and the exact row contents. It only omits secondary details like default page size and the recency window for 'recent' matches.

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 coverage is only 25%, since only _apiKey has a description. The description compensates partially by identifying steam_account_id as the lookup key and explaining take/skip as pagination controls, but it leaves numeric ranges, defaults, and maximum page size undocumented.

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 opens with a specific action and resource: 'Fetch a Dota 2 player's recent match history by Steam account id.' It clearly distinguishes this tool from sibling tools like player_heroes and live_matches by scope, and it enumerates the exact returned fields.

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?

It implies when to use the tool — whenever a player's recent match history is needed for a Steam account — but it does not explicitly name sibling alternatives or exclusion conditions. The pagination note is a how-to detail rather than guidance on choosing this tool over alternatives.

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.