Skip to main content
Glama

Player Heroes

player_heroes
Read-onlyIdempotent

Fetch the top heroes played by a Dota 2 player (by Steam account id), ranked by match count — returns heroId, matchCount, and winCount for up to take heroes (default 20).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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
      -  },
      -  {
      -    "steam_account_id": 123456789,
      -    "take": 10
      -  }
      -]New value: +[
      +  {
      +    "_apiKey": "your-stratz-api-token",
      +    "steam_account_id": 123456789
      +  },
      +  {
      +    "_apiKey": "your-stratz-api-token",
      +    "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
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "steam_account_id": 123456789
      +  },
      +  {
      +    "steam_account_id": 123456789,
      +    "take": 10
      +  }
      +]
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish readOnly/openWorld/idempotent and non-destructive. The description adds useful behavioral detail not in annotations: ordering by match count, returned fields (heroId, matchCount, winCount), and default/limit behavior of take. No contradiction.

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?

One sentence that front-loads the verb, resource, and ranking criteria, then adds return fields and default in a compact clause. No filler.

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 read-only lookup without an output schema, the description names the returned fields and default limit, covering most invocation concerns. It doesn't document alternatives or failure cases, but these are not essential for this low-complexity tool.

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

Parameters4/5

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

Only _apiKey is described in the schema (33% coverage), so the description carries the burden. It adds meaning for take ('up to ... default 20') and steam_account_id ('by Steam account id'), which meaningfully compensates for bare schema entries.

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?

Uses specific verb 'Fetch' and identifies exact resource: top heroes played by a Dota 2 player, keyed by Steam account id and ranked by match count. This distinguishes it from sibling tools like hero/heroes, which address broader hero data, and player, which targets account-level data.

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?

Description implies the intended scenario — get a player's most-played heroes — but provides no explicit when-to-use or exclusions relative to siblings like player_matches or hero_stats. There is no guidance for choosing between this and player/heroes.

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.