Skip to main content
Glama
shopsapp-for-agents

ShopsApp MCP bridge

release_reservation

Releases an abandoned reservation by ID, making the reserved item available to other shoppers again.

Instructions

Release an abandoned gift reservation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reservation_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It says 'release' but does not state whether the action is destructive or irreversible, what happens to the underlying item, or whether any permissions are required. The lack of behavioral detail leaves significant room for misinterpretation.

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 a single, tightly worded sentence that front-loads the action ('Release') and the target ('abandoned gift reservation'). There is no wasted wording, and it is appropriately sized for a one-parameter tool.

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?

Given the low complexity (one parameter, no annotations, output schema present), the description still leaves critical gaps: no usage context, no behavioral details, and no parameter explanation. The presence of an output schema reduces the need to describe return values, but the tool remains incomplete for safe and correct invocation.

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 coverage is 0% and the description does not mention the reservation_id parameter at all. It does not add any meaning beyond the parameter's name and type, failing to compensate for the missing schema documentation.

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 ('Release') and resource ('abandoned gift reservation'), making the tool's core action clear. It distinguishes from siblings like reserve_item (which creates reservations) and list tools, though the qualifier 'abandoned' could be more fully explained.

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?

The description provides no guidance on when to use this tool vs alternatives, such as reserve_item, or any prerequisites or conditions (e.g., what counts as 'abandoned'). The inverse relationship to reserve_item is implied but never stated.

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