Skip to main content
Glama

Standard Titanium Quotations

Check quotation status

get_quote_status
Read-onlyIdempotent

Check a submitted quotation. While pending review, only the pending-review state is returned. Once QUOTED, the response includes the quoted products, approved line prices and total amount.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enquiryIdYesThe enquiry ID returned when the quotation was submitted

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes
statusYes
messageYes
currencyYes
enquiryIdYes
updatedAtYes
quotedAmountYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changed
    • changedInput schema / properties / enquiryId / description
      Previous value: -"The enquiry ID returned by request_quote or request_titanium_quote"New value: +"The enquiry ID returned when the quotation was submitted"
    • addedOutput schema / properties / items
      Added value: +{
      +  "items": {
      +    "properties": {
      +      "grade": {
      +        "type": "string"
      +      },
      +      "lineNumber": {
      +        "format": "int32",
      +        "type": "integer"
      +      },
      +      "lineTotal": {
      +        "type": "number"
      +      },
      +      "productForm": {
      +        "type": "string"
      +      },
      +      "quantity": {
      +        "type": "number"
      +      },
      +      "quantityUnit": {
      +        "type": "string"
      +      },
      +      "sectionShape": {
      +        "type": "string"
      +      },
      +      "specification": {
      +        "type": "string"
      +      },
      +      "unitPrice": {
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "grade",
      +      "lineNumber",
      +      "lineTotal",
      +      "productForm",
      +      "quantity",
      +      "quantityUnit",
      +      "sectionShape",
      +      "specification",
      +      "unitPrice"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
    • changedOutput schema / properties / status / enum
      Previous value: -[
      -  "PENDING_PRICING",
      -  "INFORMATION_REQUIRED",
      -  "QUOTED",
      -  "CANCELLED"
      -]New value: +[
      +  "PENDING_PRICING",
      +  "PENDING_REVIEW",
      +  "INFORMATION_REQUIRED",
      +  "QUOTED",
      +  "CANCELLED"
      +]
    • changedOutput schema / required
      Previous value: -[
      -  "currency",
      -  "enquiryId",
      -  "message",
      -  "quotedAmount",
      -  "status",
      -  "updatedAt"
      -]New value: +[
      +  "currency",
      +  "enquiryId",
      +  "items",
      +  "message",
      +  "quotedAmount",
      +  "status",
      +  "updatedAt"
      +]
  2. First observed

TDQS

A3.8/5.0
Behavior4/5

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

The description discloses meaningful state-dependent behavior: pending-review returns only the pending state, while QUOTED returns products, approved line prices, and total amount. This adds value beyond the readOnlyHint/idempotentHint annotations, which only cover safety and mutation. No contradiction 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?

The description is two sentences with the core action front-loaded, followed by the state-dependent behavior. Every clause contributes useful information; there is no filler or repetition.

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

Completeness4/5

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

For a simple single-parameter read-only tool, the description covers the two relevant response states and the output schema handles return-value structure. A minor gap is the lack of detail on unknown enquiry IDs or other possible statuses, but the annotations and output schema already cover much of the context.

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?

The sole parameter enquiryId is already fully documented in the schema, including its origin ('The enquiry ID returned when the quotation was submitted'). The description adds no new parameter-level detail, so the high-coverage baseline of 3 applies.

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 action ('Check a submitted quotation') and a clear resource, which is immediately distinguishable from the sibling request_quote. However, it does not explicitly name the sibling or contrast the two, so it stops short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'a submitted quotation' implies this tool is for post-submission follow-up, giving a clear context. But there is no explicit when-not-to-use guidance or mention of alternatives such as request_quote for creating a new quotation, so usage guidance is only implicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources