Skip to main content
Glama
xxxbrian
by xxxbrian

get_stored_response_with_markdown

Retrieve a stored HTTP response by ID and convert it to Markdown, supporting HTML and PDF content types.

Instructions

Retrieve a stored HTTP response by its ID and convert it to Markdown format. Supports HTML and PDF content types. (Converting large PDF to Markdown may cause timeout, just wait and try again.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_idYesID of the stored response

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden of explaining behavior. It covers the main operation, supported formats, and a timeout caveat for large PDFs, but it does not mention potential side effects, error cases, or whether the operation is strictly read-only.

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?

The description is concise and well-structured, with a clear two-sentence explanation plus a useful timeout note. No unnecessary words or repetition are present.

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

Completeness4/5

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

The description gives enough context for a simple retrieval-and-convert tool: what it does, the supported formats, and a practical timeout warning. It lacks explicit error behavior details, but the main use case is adequately covered for an agent to call it correctly.

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?

The schema already describes response_id as 'ID of the stored response', and the tool description only repeats 'by its ID'. No additional meaning is added beyond the schema, so the baseline score applies.

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 clearly identifies the action: retrieving a stored HTTP response by ID and converting it to Markdown. It also specifies supported content types (HTML, PDF), making the tool's purpose distinct from the sibling get_stored_response.

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

Usage Guidelines3/5

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

The description implies usage for retrieving stored responses and converting them to Markdown, and it mentions HTML/PDF support. However, it does not explicitly state when to prefer this tool over the sibling get_stored_response or other HTTP tools, leaving the choice somewhat implied.

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