Skip to main content
Glama

Get a replay's AI Coach report

get_analysis
Read-only

Fetch a StarCraft II replay's details and AI Coach report. If an analysis is in progress, waits up to wait_seconds and returns it when ready.

Instructions

Read a replay's details and its AI Coach report if one exists. If this session started a coach run that is still going, waits for it (up to wait_seconds) and returns the report when it lands. Free — never spends minerals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
replayYesReplay id, short id, slug, or a StarCraft2.ai replay URL.
wait_secondsNoMax seconds to wait for an in-progress run (default 50).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the safety profile is covered. The description adds real value beyond them: it discloses the blocking wait behavior capped at wait_seconds and the cost profile ('Free — never spends minerals'), which matters in a toolset that contains unlock_more_questions.

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?

Three short sentences, front-loaded with what is read, then the wait condition, then the cost note. Every sentence carries distinct information with no repetition.

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?

With no output schema, the description must convey what comes back; it names both payloads (replay details and AI Coach report) but does not describe the report's shape or what happens if no report exists beyond the conditional phrasing. Adequate for a read tool with full schema coverage.

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 both parameters are already documented, including the replay id formats and the wait_seconds default of 50. The description only restates the wait cap, adding no syntax or format detail beyond the schema; baseline 3 applies.

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?

States a specific verb and resource: reads a replay's details plus its AI Coach report. Clear on its own, but does not distinguish itself from siblings like analyze_replay or ask_about_replay, which plausibly overlap in purpose.

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?

Usage is implied rather than stated: the description covers the in-progress-run case and the wait behavior, but never says when to pick this over analyze_replay or ask_about_replay. No explicit when-not conditions are given.

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