Skip to main content
Glama
k-rister

ephemeral-buffer

by k-rister

get_execution

Retrieve execution details: phase metadata, event history, and optional output for a given execution ID.

Instructions

Return durable phase metadata and event history for one execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
execution_idYes
include_outputNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.0

TDQS

B3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. 'Return' clearly signals a read-only operation, and 'durable phase metadata' adds useful context about persistence. However, it does not disclose behaviors such as pagination, error conditions, or the effect of include_output, so transparency is only partially addressed.

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 a single, front-loaded sentence with no redundant words. It is concise and scannable, though the term 'durable' is slightly jargon-heavy and could be clearer.

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

Completeness2/5

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

The description is adequate for identifying the tool's purpose but incomplete for confident invocation: it lacks parameter explanations, usage guidance, and behavioral details beyond 'Return'. The presence of an output schema helps, but it does not cover parameter semantics or alternative routing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not compensate by explaining execution_id or include_output. It omits include_output entirely, so an agent gains little parameter-level meaning beyond the schema's names and types.

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 ('Return') and a specific resource ('durable phase metadata and event history for one execution'). It distinguishes this tool from siblings like get_execution_output and list_executions by emphasizing a single execution's metadata/history rather than output or multiple executions.

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

Usage Guidelines2/5

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

No guidance is provided about when to use this tool versus alternatives such as get_execution_output or list_executions. The phrase 'for one execution' hints at scope, but there are no explicit conditions, exclusions, or selection criteria.

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