Skip to main content
Glama

Extend MCP

Get an evaluation run

get_evaluation_run
Read-onlyIdempotent

Get an evaluation run's status and accuracy metrics — this is the ONLY tool that returns them, not a get-batch tool (evaluations group). An evaluation is an async job: a fresh run reports PROCESSING, so pass wait: true to block until it finishes; if it is still non-terminal afterward, call again with wait: true rather than re-submitting. Metrics by resource type: extractors { accuracy, fieldMetrics per field path — each field has countExpected/countAccurate, and accuracy is aggregated across items, not per-item }; classifiers { accuracy, classificationMetrics with precision/recall/f1 per type }; splitters { precision, recall, f1, split counts }. Terminal statuses: PROCESSED, FAILED, CANCELLED.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
waitNoPoll until the evaluation run reaches a terminal status (within the wait budget).
environmentYes"TEST" = the Test (development) environment, "PRODUCTION" = live. Must match a granted target from get_me (an API key pins one environment).
waitSecondsNoMax seconds to block waiting on the run (clamped to the server wait budget).
workspaceIdYesTarget workspace (ws_...). Must be a granted workspace — get_me lists the accepted values.
evaluationRunIdYesThe bpr_... ID returned by run_evaluation.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
entityNo
statusYes
metricsNo
entityVersionNo
evaluationSetIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • removedOutput schema / properties / llmContext
      Removed value: -{
      -  "type": "string"
      -}
  2. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already indicate read-only, idempotent, nondestructive behavior, so the description adds meaningful behavioral context beyond that: fresh runs report PROCESSING, wait: true blocks until terminal, non-terminal runs should be re-polled, and terminal statuses are PROCESSED, FAILED, CANCELLED. It even clarifies aggregation semantics of accuracy metrics across items, which is not visible from annotations or the schema.

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 dense and front-loaded with the core purpose and its unique value, and every sentence adds operational value. It is fairly long and packed into one paragraph, but it earns its length by covering async semantics, terminal statuses, and metric shapes. Slight structural improvement would come from breaking it into bulleted sections.

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?

Given the async nature of evaluations, the presence of an output schema, and the complexity of different metric shapes per resource type, the description is complete. It tells the agent how to handle polling, what statuses to expect, and what metrics are returned for extractors, classifiers, and splitters. Nothing needed to invoke the tool correctly is missing.

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?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds important context for 'wait' behavior and the relationship between evaluationRunId and run_evaluation, plus metric names per resource type. This elevates it slightly above the baseline but does not need to carry the parameter documentation burden.

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: 'Get an evaluation run's status and accuracy metrics.' It also explicitly differentiates itself from get-batch tools by saying it is the ONLY tool that returns these metrics, making its purpose unambiguous among a large group of sibling tools.

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?

Provides explicit guidance for the async job scenario: pass wait: true to block, and call again with wait: true rather than re-submitting if still non-terminal. It also names the alternative category (get-batch tool) and distinguishes the evaluation-run use case, so the agent knows when to use this tool vs alternatives.

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.

Resources