Standard Titanium Quotations
Server Details
Request titanium quotations and check enquiry status with Standard Titanium.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one submits a quotation and the other retrieves its status. There is no overlap or ambiguity between submitting and checking.
Both tools follow a consistent verb_noun pattern: request_quote and get_quote_status. The naming is predictable and clearly indicates the action and resource.
With only two tools, the server feels thin but is appropriately scoped for a minimal quote submission and status-check workflow. It sits at the borderline where a slightly richer surface (e.g., list_quotes or cancel_quote) would feel more complete.
The server covers the core create-and-check flow for quotations, but lacks update, delete, or listing operations. Agents can work around this by tracking quote IDs and using get_quote_status, but the surface is notably incomplete for a full quotation lifecycle.
Available Tools
2 toolsget_quote_statusCheck quotation statusARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| enquiryId | Yes | The enquiry ID returned when the quotation was submitted |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | |
| status | Yes | |
| message | Yes | |
| currency | Yes | |
| enquiryId | Yes | |
| updatedAt | Yes | |
| quotedAmount | Yes |
TDQS
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.
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.
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.
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.
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.
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.
request_quoteRequest a multi-line titanium quotationAInspect
Submit one or more structured titanium line items for quotation review. Each item may include sectionShape (ROUND, HEX, FLAT or UNKNOWN). Only call after the customer has reviewed all interpreted items and explicitly agreed to submit them.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Customer's email address | ||
| items | Yes | One or more structured titanium requirements. Include sectionShape where relevant. | |
| customerName | Yes | Customer's full name | |
| deliveryLocation | Yes | Delivery location or postcode |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | Yes | |
| message | Yes | |
| createdAt | Yes | |
| enquiryId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already communicate that this is not read-only and not idempotent. The description adds meaningful context by framing the call as a "quotation review" step and requiring explicit customer agreement before submission, which is a valuable guardrail beyond what the annotations provide.
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 two sentences with no filler. It front-loads the main purpose and immediately follows with the key usage constraint, making it easy for an agent to parse quickly and accurately.
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 tool with a nested items schema, annotations, and an output schema, the description is largely complete: it states the scope, the submission precondition, and the domain. It does not explicitly describe what happens after submission or point to get_quote_status, but the sibling name and output schema cover most of that gap.
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 coverage for the four top-level parameters is 100%, so the baseline is 3. The description adds one useful detail by enumerating sectionShape values (ROUND, HEX, FLAT, UNKNOWN), but it does not explain the required item fields or other parameter meanings, leaving the schema to carry most of the semantic load.
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 uses a specific verb and resource: "Submit one or more structured titanium line items for quotation review." This clearly identifies both the action and the object, and it is easy to distinguish from the sibling get_quote_status because one creates a request while the other checks status.
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 gives a clear precondition: "Only call after the customer has reviewed all interpreted items and explicitly agreed to submit them." This effectively tells the agent when not to call, but it does not explicitly mention get_quote_status or outline when that alternative should be used instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
- Changed
get_quote_status4 fields changed- changed
Input schema / properties / enquiryId / descriptionPrevious value: -"The enquiry ID returned by request_quote or request_titanium_quote"New value: +"The enquiry ID returned when the quotation was submitted" - added
Output schema / properties / itemsAdded 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" +} - changed
Output schema / properties / status / enumPrevious value: -[ - "PENDING_PRICING", - "INFORMATION_REQUIRED", - "QUOTED", - "CANCELLED" -]New value: +[ + "PENDING_PRICING", + "PENDING_REVIEW", + "INFORMATION_REQUIRED", + "QUOTED", + "CANCELLED" +] - changed
Output schema / requiredPrevious value: -[ - "currency", - "enquiryId", - "message", - "quotedAmount", - "status", - "updatedAt" -]New value: +[ + "currency", + "enquiryId", + "items", + "message", + "quotedAmount", + "status", + "updatedAt" +]
- Changed
request_quote7 fields changed- added
Input schema / properties / deliveryLocationAdded value: +{ + "description": "Delivery location or postcode", + "type": "string" +} - removed
Input schema / properties / descriptionRemoved value: -{ - "description": "Detailed description of what the customer needs", - "type": "string" -} - added
Input schema / properties / itemsAdded value: +{ + "description": "One or more structured titanium requirements. Include sectionShape where relevant.", + "items": { + "properties": { + "additionalRequirements": { + "type": "string" + }, + "alloy": { + "type": "string" + }, + "certification": { + "type": "string" + }, + "destination": { + "type": "string" + }, + "dimensions": { + "properties": { + "diameterMm": { + "type": "number" + }, + "insideDiameterMm": { + "type": "number" + }, + "lengthMm": { + "type": "number" + }, + "outsideDiameterMm": { + "type": "number" + }, + "thicknessMm": { + "type": "number" + }, + "wallThicknessMm": { + "type": "number" + }, + "widthMm": { + "type": "number" + } + }, + "type": "object" + }, + "grade": { + "type": "string" + }, + "productForm": { + "enum": [ + "SHEET", + "PLATE", + "ROUND_BAR", + "FLAT_BAR", + "TUBE", + "PIPE", + "WIRE", + "FORGING", + "FASTENER", + "OTHER", + "UNKNOWN" + ], + "type": "string" + }, + "quantity": { + "type": "number" + }, + "quantityUnit": { + "enum": [ + "PIECES", + "KG", + "TONNES", + "METRES", + "LENGTHS", + "SHEETS", + "PLATES", + "BARS", + "UNKNOWN" + ], + "type": "string" + }, + "requiredDate": { + "format": "date", + "type": "string" + }, + "sectionShape": { + "type": "string" + }, + "specification": { + "type": "string" + }, + "surfaceFinish": { + "type": "string" + } + }, + "required": [ + "dimensions", + "productForm", + "quantity", + "quantityUnit" + ], + "type": "object" + }, + "type": "array" +} - removed
Input schema / properties / postcodeRemoved value: -{ - "description": "Postcode for the service or delivery location", - "type": "string" -} - removed
Input schema / properties / serviceRemoved value: -{ - "description": "Short name of the service or product being quoted", - "type": "string" -} - changed
Input schema / requiredPrevious value: -[ - "customerName", - "email", - "postcode", - "service", - "description" -]New value: +[ + "customerName", + "email", + "deliveryLocation", + "items" +] - changed
Output schema / properties / status / enumPrevious value: -[ - "PENDING_PRICING", - "INFORMATION_REQUIRED", - "QUOTED", - "CANCELLED" -]New value: +[ + "PENDING_PRICING", + "PENDING_REVIEW", + "INFORMATION_REQUIRED", + "QUOTED", + "CANCELLED" +]
- Removed
request_titanium_quote
3 tool updates
- First observed
get_quote_status - First observed
request_quote - First observed
request_titanium_quote
Related MCP Connectors
Supplier sourcing, procurement, commercial intelligence, RFQ routing and B2B deal coordination.
Prepare physical mail and fax quotes, review before payment, and track orders with OAuth.
Steel takeoff, weight and gauge calculators plus RFQ, RFI, NCR and Bluebeam markup generators.
Buy B2B supplies from a real US distributor: submit an RFQ, get a priced quote, order and pay.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides real-time stock analysis tools including price lookup, comprehensive investment scoring, and company-to-ticker conversion through a MCP interface.1-
- FlicenseNot gradedqualityDmaintenanceEnables LLM clients to query live and historical metal and commodity prices from metalsmarket.net through an MCP server.-
- FlicenseNot gradedqualityDmaintenanceProvides real-time financial market data for stocks across multiple markets (A-shares, Hong Kong, US, etc.) including live quotes, K-line data, tick data, order book depth, technical indicators, and money flow analysis through the iTick API.-
- AlicenseNot gradedqualityAmaintenanceProvides real-time stock market data for Claude Desktop and MCP-compatible clients, enabling natural language queries for quotes, historical prices, company profiles, financial statements, analyst ratings, comparisons, news, options, holdings, dividends, estimates, symbol search, and market status.204 npm19MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.