Get quote
gambot_get_quoteRetrieve a specific quote by its ID from your CRM to access detailed quote information for follow-up and analysis.
Instructions
Get a single quote by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| quoteId | Yes |
gambot_get_quoteRetrieve a specific quote by its ID from your CRM to access detailed quote information for follow-up and analysis.
Get a single quote by id.
| Name | Required | Description | Default |
|---|---|---|---|
| quoteId | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral disclosure burden. It only conveys a read-style operation through the word 'Get' and says nothing about response format, not-found behavior, permissions, or potential side effects.
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?
One short, front-loaded sentence with no filler. It conveys the essential operation efficiently.
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?
The tool is simple and the description is enough to make a plausible call with quoteId, but there is no output schema, no annotations, and no guidance on where quoteId comes from or what the response contains. For a get-by-id tool this is barely adequate.
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 0% and the only parameter has no description. The phrase 'by id' adds only minimal semantic weight because the parameter name quoteId is already self-describing; no format, source, or example is given.
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 states a specific action ('Get'), a clear resource ('a single quote'), and the retrieval key ('by id'). It is distinguishable from list_quotes by the 'single' qualifier, though it does not explicitly name sibling alternatives.
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 instead of list_quotes, update_quote, or create_quote. The only implied context is that you already have a quoteId, but no when-not-to-use or alternative routing is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.