Skip to main content
Glama
Yan-Vi
by Yan-Vi

live_get_run

Retrieve the full status of a run, including each step's status and any error details, to verify execution results.

Instructions

Full detail for one run started via live_start_run (or live_replay_flow) by its runId -- status, and every step's own status (pending/running/passed/failed/skipped) plus the error for a failed one. This is the actual "did it work, and if not where" answer after live_start_run returns. Works for both a still-running and an already-finished run.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
runIdYes
projectNoPath to the project root (same folder the side panel connects to). Defaults to the EASYSPEC_PROJECT environment variable if omitted.
sessionNoWhich connected side panel to target, by its connection id (see live_status) -- only needed when more than one side panel is connected to the same project.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.4

TDQS

A4.1/5.0
Behavior3/5

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

No annotations provided, so the description carries the burden. It describes the return contents but does not explicitly state whether the operation is read-only or has side effects, though the name and description imply a read-only query.

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 informative but slightly verbose. It is front-loaded with the primary purpose and includes useful context in the second sentence, without being excessively long.

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?

The description lists what is returned (status, step statuses, error for failed steps) and states it works for both running and finished runs. This is sufficient given the absence of an output schema and the relatively simple input parameters.

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?

The schema covers runId as a required string and provides descriptions for project and session. The description adds meaning to runId by specifying it comes from live_start_run or live_replay_flow, helping the agent understand where the ID originates.

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?

Clearly states the tool retrieves full detail for a single run by ID, including status and per-step statuses and errors, distinguishing it from sibling tools like live_list_runs and live_get_suite_run.

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?

Provides clear usage context: it is the follow-up after live_start_run or live_replay_flow to check if the run worked and where it failed. It also notes it works for both running and finished runs, though it does not explicitly contrast with alternative tools.

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