Skip to main content
Glama

get_quote

Read-only

Retrieve a CPQ/sales quote record by quote number or sys_id, automatically searching known quote tables.

Instructions

Get a CPQ/sales quote record by number or sys_id (tries known quote tables)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tableNoExplicit quote table if you know it
numberNoQuote number
sys_idNoQuote sys_id

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv4.15.1

TDQS

B3.3/5.0
Behavior3/5

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

The description adds the 'tries known quote tables' behavior, which is useful beyond the readOnlyHint annotation. However, it does not disclose what happens when no identifier is provided or when multiple tables match, and it omits any failure semantics. The read-only nature is consistent with annotations.

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?

A single, front-loaded sentence conveys the core purpose and the multi-table search behavior with no wasted words. The description is compact and easy to scan.

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

Completeness3/5

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

For a simple lookup tool with annotations and full schema coverage, the description is mostly adequate. However, it does not state that at least one of number or sys_id is required (schema has no required fields), nor does it describe the return value or error behavior. This could lead an agent to call it without an identifier.

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?

Schema coverage is 100%, so parameters are already documented. The description reinforces that number or sys_id are primary lookup keys and that 'table' is optional ('if you know it'), adding slight context. It does not add syntax or format details beyond the schema.

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 states a specific verb ('Get') and resource ('CPQ/sales quote record'), and clarifies lookup by number or sys_id. It does not explicitly differentiate from the sibling 'list_quotes', but the singular 'a quote record' implies a single fetch. The mention of 'tries known quote tables' adds a distinctive scope.

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?

No explicit when-to-use guidance or alternatives are mentioned. The description does not state when to prefer this over 'list_quotes' or when a table parameter is required. The implied context (use when you have a quote identifier) is not articulated.

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

Deploy Server

Other Tools