Skip to main content
Glama

execute_replay_request

Execute a one-shot HTTP request replay without saving. Use for captured or ad-hoc requests after inspection.

Instructions

Executes a one-shot HTTP replay without saving it. Use this for a captured request after inspecting it with get_captured_request, or for an ad-hoc request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesHTTP or HTTPS request URL
bodyNoOptional UTF-8 request body
methodYesHTTP method
headersNoRequest headers as a string map

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/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 discloses that this is a one-shot execution and that it does not save the request, but omits important behavioral details such as authentication/authorization requirements, side effects, rate limits, or what the response contains. It adds some value but is insufficient for a network request executor.

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 concise sentences with no wasted words. The primary action is front-loaded, and the usage guidance follows efficiently.

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?

Given no annotations and no output schema, the description is somewhat incomplete. It fails to cover return values, error handling, or security constraints. It touches on the core purpose and one usage scenario but leaves notable gaps for a tool that makes outbound HTTP requests.

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 description coverage is 100%, so the schema fully documents all parameters including url, method, body, and headers. The description adds no parameter-specific information beyond the schema, making a baseline of 3 appropriate.

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?

The description uses a specific verb and resource ('Executes a one-shot HTTP replay') with a key qualifier ('without saving it'). It doesn't explicitly differentiate from the closest sibling 'execute_replay_item', though the one-shot/no-save wording implies a distinction.

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?

It explicitly states when to use it: after inspecting a captured request with get_captured_request, or for an ad-hoc request. This is clear context, but it doesn't explain when to use a saved replay item (execute_replay_item) instead of the one-shot execution.

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