Skip to main content
Glama

get_run

Read-onlyIdempotent

Fetch a simulation run by run_id to view its recommended action, confidence, expected value, mode, and creation time. Use list_runs to find run IDs; read-only, unknown IDs return not_found.

Instructions

Fetch one simulation run by run_id with its full detail — the decision metrics and the request context it ran under. Use list_runs to find run ids. Read-only; an unknown run_id fails with not_found. Returns the run record: run_id, recommended_action, confidence, expected_value, mode, and created_at.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
run_idYesUUID of the simulation run

Schema Changelog

Changes observed during successful MCP inspections.

  1. 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 already mark this as read-only, idempotent, and non-destructive. The description adds genuinely new behavioral detail: an unknown run_id fails with not_found, and the response shape is spelled out (run_id, recommended_action, confidence, expected_value, mode, created_at). This gives the agent a clear model of both success and failure behavior.

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 sentences with no filler: the core purpose is front-loaded, then usage guidance, then failure behavior and return fields. Every sentence earns its place.

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 fetch tool, the description is complete: it explains how to find the ID, what the call returns, and what happens when the ID is invalid. No output schema exists, so describing the return fields is essential and properly handled.

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 input schema already describes run_id as a 'UUID of the simulation run,' giving 100% schema coverage. The description adds value by connecting run_id to the discovery workflow ('Use list_runs to find run ids') and by listing run_id in the return record, reinforcing its role as the lookup key.

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 states a specific verb and resource: 'Fetch one simulation run by run_id with its full detail.' It also clarifies scope by naming the included content (decision metrics and request context) and distinguishes it from list and other get_* siblings by naming the exact resource type.

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?

The description gives clear context for when to use the tool—when a single simulation run's full detail is needed—and explicitly tells agents to use list_runs to find run ids. It does not explicitly enumerate exclusions versus other get_* tools, but for a simple one-parameter fetch it provides adequate 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