Skip to main content
Glama

execute_replay_item

Run a saved HTTP replay item through Lemon's native URLSession path, returning the response preview and updating its saved execution status.

Instructions

Executes one saved HTTP replay item through Lemon's native URLSession/runtime path and returns the response preview. Saved execution status is updated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSaved replay item UUID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It usefully discloses the side effect ('Saved execution status is updated') and that it returns a response preview, but says nothing about permissions, idempotency, failure behavior, or network side effects of firing a live request.

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?

Two sentences, no waste, with the core action and the runtime path front-loaded and the side effect last. Every clause earns its place.

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

Completeness3/5

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

With no annotations and no output schema, the description is responsible for more than it delivers. It covers the action, the return preview, and the state mutation, but omits error paths and safety/permission context needed for an execute-and-mutate tool.

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?

Only one parameter exists and schema description coverage is 100%, so the schema already documents the UUID fully. The description adds no format or constraint detail beyond what the schema provides, which is the baseline case.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Executes one saved HTTP replay item') with the notable implementation detail of the native URLSession/runtime path, which implicitly distinguishes it from the sibling execute_replay_request. It is clear, though it never explicitly names the sibling it differs from.

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?

There is no guidance on when to use this versus the closely-named sibling execute_replay_request, nor any prerequisites or exclusions. The agent must infer the 'saved item' vs 'ad-hoc request' distinction from the name and prose alone.

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