Get one offer in full
get_offerFull detail for a single offer by its id, including the claim_url the human should open.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The offer id, as returned by search_offers. |
get_offerFull detail for a single offer by its id, including the claim_url the human should open.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The offer id, as returned by search_offers. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral disclosure burden. It does disclose a valuable usage nuance: the claim_url is meant for the human to open, not the agent. It does not mention error behavior or confirmed read-only semantics, but for a simple get-by-id tool this is a reasonable level of transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no redundancy. It front-loads the core action ('full detail for a single offer') and adds the key extra detail (claim_url) without wasting words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter, no-output-schema tool, the description covers the essential behavior and the important claim_url detail. The schema's reference to search_offers supplies the needed cross-tool context, but the description itself could have explicitly stated that search_offers should be used first to obtain the id.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has full coverage for the single id parameter with a description explaining it is 'the offer id, as returned by search_offers.' The tool description only reiterates 'by its id' and adds no new parameter-level semantics, so the schema carries the burden and the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns 'full detail for a single offer by its id,' which identifies both the action and the resource. It also emphasizes 'full detail' and 'single offer,' helping distinguish it from search_offers and list_providers, though it does not explicitly name those siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for fetching a single offer's complete data, and the schema's id parameter description ('as returned by search_offers') provides a practical workflow hint. However, the description itself does not explicitly state when to use it versus alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a clearly distinct purpose: searching offers, retrieving a specific offer's detail, and listing providers. No overlap or ambiguity between them.
All tool names follow a consistent lowercase verb_noun pattern: get_offer, list_providers, search_offers. The naming style is uniform and predictable.
Three tools is well-scoped for a offers-focused server. Each tool earns its place and together they cover the core user workflows without unnecessary bloat.
The surface covers searching live offers, retrieving full offer details, and listing providers, which fully supports the apparent read-only purpose of the server. No obvious missing operations for this domain.