getOffer
Fetch detailed information for a specific offer by providing its ID, including content, configuration, and targeting details.
Instructions
Get details of a specific offer
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Offer ID |
Fetch detailed information for a specific offer by providing its ID, including content, configuration, and targeting details.
Get details of a specific offer
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Offer ID |
Changes observed during successful MCP inspections.
v2.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral burden. It implies a read-only operation from 'Get,' but it does not disclose response structure, error behavior, authentication needs, or whether any side effects occur.
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 clear, front-loaded sentence with no filler. Every word contributes to conveying the tool's core purpose.
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 simple single-parameter getter, the description provides the essential purpose, and the schema covers the parameter. However, with no output schema and no usage context versus sibling list tools, it leaves minor but real gaps about what 'details' are returned and when to choose this tool.
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?
Schema description coverage is 100%, with the 'id' parameter described as 'Offer ID.' The description adds little beyond the schema, but since the schema already fully documents the parameter, the baseline score of 3 applies.
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 says 'Get details of a specific offer,' which is a clear verb plus resource. It distinguishes from siblings like listOffers or createOffer by implying single-item retrieval by ID.
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?
There is no guidance about when to use this tool versus listOffers, createOffer, or updateOffer. The description only states what it does, not when it should be preferred over alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.