Skip to main content
Glama

get_agent_run_checkpoints

Read-onlyIdempotent

Retrieve the deterministic checkpoints of a single agent run, enabling replay and audit of lifecycle transitions. Requires a run ID; returns the run's checkpoint records.

Instructions

List the persisted checkpoints of one agent run — the deterministic snapshots written at creation and every lifecycle transition that make the run replayable. Use query_agent_run_checkpoints to search checkpoints across runs. Read-only; an unknown run_id fails with agent_run_not_found. Returns the run's checkpoint records.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
run_idYesRun id returned by create_agent_run or list_agent_runs.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.3
    • addedInput schema / properties / run_id / description
      Added value: +"Run id returned by create_agent_run or list_agent_runs."
  2. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations mark read-only/idempotent, but the description adds meaningful context: checkpoints are persisted deterministic snapshots created at lifecycle transitions, and unknown run_ids fail with agent_run_not_found. This explains behavior beyond the annotation flags.

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 focused sentences: purpose, sibling routing, then read-only/error/return behavior. Front-loaded and every clause adds value.

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

Completeness5/5

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

For a one-parameter read-only tool, the description covers scope, error behavior, and return object at a high level. No output schema exists, but the description tells the agent what to expect and when to use it; annotations cover safety.

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 already covers the sole run_id parameter at 100% with guidance on where to obtain it. Description adds only the error condition for invalid IDs, so it does not need to compensate; baseline 3 is appropriate.

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?

States a specific verb and resource ('List persisted checkpoints of one agent run') and explicitly contrasts with sibling query_agent_run_checkpoints. An agent can identify exactly what this returns and how it differs.

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

Usage Guidelines5/5

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

Directs agents to query_agent_run_checkpoints for cross-run searches, making the single-run vs across-run choice explicit. Also notes unknown run_id failure condition, adding operational guidance.

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

Deploy Server

Other Tools