Skip to main content
Glama

Standard Titanium Quotations

Server Details

Request titanium quotations and check enquiry status with Standard Titanium.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A3.9/5.0

Scored across 2 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count3/5

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.

Completeness3/5

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 tools
get_quote_statusCheck quotation statusA
Read-onlyIdempotent
Inspect

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.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
statusYes
messageYes
currencyYes
enquiryIdYes
updatedAtYes
quotedAmountYes

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.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesCustomer's email address
itemsYesOne or more structured titanium requirements. Include sectionShape where relevant.
customerNameYesCustomer's full name
deliveryLocationYesDelivery location or postcode

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYes
messageYes
createdAtYes
enquiryIdYes

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 3 tool updates
    • Changedget_quote_status4 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"
        +]
    • Changedrequest_quote7 fields changed
      • addedInput schema / properties / deliveryLocation
        Added value: +{
        +  "description": "Delivery location or postcode",
        +  "type": "string"
        +}
      • removedInput schema / properties / description
        Removed value: -{
        -  "description": "Detailed description of what the customer needs",
        -  "type": "string"
        -}
      • addedInput schema / properties / items
        Added 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"
        +}
      • removedInput schema / properties / postcode
        Removed value: -{
        -  "description": "Postcode for the service or delivery location",
        -  "type": "string"
        -}
      • removedInput schema / properties / service
        Removed value: -{
        -  "description": "Short name of the service or product being quoted",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "customerName",
        -  "email",
        -  "postcode",
        -  "service",
        -  "description"
        -]New value: +[
        +  "customerName",
        +  "email",
        +  "deliveryLocation",
        +  "items"
        +]
      • changedOutput schema / properties / status / enum
        Previous value: -[
        -  "PENDING_PRICING",
        -  "INFORMATION_REQUIRED",
        -  "QUOTED",
        -  "CANCELLED"
        -]New value: +[
        +  "PENDING_PRICING",
        +  "PENDING_REVIEW",
        +  "INFORMATION_REQUIRED",
        +  "QUOTED",
        +  "CANCELLED"
        +]
    • Removedrequest_titanium_quote
  2. 3 tool updates
    • First observedget_quote_status
    • First observedrequest_quote
    • First observedrequest_titanium_quote

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides real-time stock analysis tools including price lookup, comprehensive investment scoring, and company-to-ticker conversion through a MCP interface.
    1
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables LLM clients to query live and historical metal and commodity prices from metalsmarket.net through an MCP server.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides 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.
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    Provides 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 npm
    19
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources