Skip to main content
Glama

Western Container Sales

Server Details

Shipping-container sale and rental pricing, availability, delivery, and product discovery.

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
URL

TDQS

A4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct query: market resolution, sale offers, rental offers, and delivery validation for a specific Sale SKU. Descriptions explicitly state when to use each and warn against substituting concepts, leaving no apparent overlap.

Naming Consistency5/5

All names use consistent snake_case verb_noun structure, with get_*_offers forming a clear parallel pair. The check/find/get verbs vary, but the overall pattern remains predictable and readable.

Tool Count5/5

Four tools fit the server's apparent quoting/informational scope, and each covers a separate step: market, sale offers, rental offers, and delivery validation. No tool feels redundant or extraneous.

Completeness4/5

The set covers the core quote workflow: resolve market, list sale and rental offers, and validate delivery for Sale SKUs. Minor gaps remain, such as no explicit rental SKU deliverability check or deeper container/SKU detail lookup, but agents can work around them.

Available Tools

4 tools
check_deliveryA
Read-onlyIdempotent
Inspect

Use this when validating whether a specific Sale SKU can be delivered to a ZIP and what delivery/delivered totals apply. Uses live delivery-quote / DHRC. Fails closed when that container cannot serve the ZIP.

ParametersJSON Schema
NameRequiredDescriptionDefault
skuYesSale container SKU
zipYes5-digit US ZIP code

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, non-destructive, and closed-world behavior, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: it references live delivery-quote / DHRC and 'fails closed when that container cannot serve the ZIP,' which is meaningful failure-mode transparency. It could say more about latency or quota, but this is solid.

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?

Three tight sentences, front-loaded with the primary use case, followed by the underlying data source and failure behavior. No filler; every sentence earns its place.

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 two-parameter read-only validation tool with full schema coverage and annotations, the description is nearly complete, adding failure-mode and data-source context. The main missing element is guidance on when to choose this over sibling offer tools, which would strengthen routing.

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 description coverage is 100%, so the schema already documents both parameters ('Sale container SKU,' '5-digit US ZIP code'). The description adds no parameter-specific syntax or constraints beyond what the schema provides, making the baseline 3 appropriate.

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 clear validation purpose: 'validating whether a specific Sale SKU can be delivered to a ZIP and what delivery/delivered totals apply.' This identifies the verb (validate/check) and resources (Sale SKU, ZIP, delivery totals). It does not explicitly differentiate from siblings like get_sale_offers or get_rental_offers, which is the only gap.

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 'Use this when validating whether...' implies usage context but does not specify when to prefer this tool over siblings such as get_sale_offers or get_rental_offers, nor does it state exclusions. It provides only implied guidance.

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

find_marketA
Read-onlyIdempotent
Inspect

Use this when the user provides a US ZIP and WCS needs the canonical customer Market. Resolves geographic ownership. Does not invent a Market when geography cannot answer.

ParametersJSON Schema
NameRequiredDescriptionDefault
zipYes5-digit US ZIP code

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and openWorldHint=false, so the agent knows it is a safe, deterministic lookup. The description adds a valuable behavioral constraint (no fabricated fallback), but with no output schema or return format details it does not add rich enough context to exceed a 3.

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?

Three short sentences, front-loaded with the trigger condition, followed by the behavioral boundary. No filler, no repetition of the schema.

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 one-param lookup with a full annotation set and no output schema, the description covers the trigger, the semantic purpose, and the failure behavior. It is a bit thin on what 'Market' concretely means, keeping it from a 5.

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 description coverage is 100% for the single 'zip' parameter ('5-digit US ZIP code'), so the schema fully documents the input. The description adds meaning by tying the ZIP to 'geographic ownership', but provides no format or validation beyond what the schema already states. Baseline 3 is appropriate.

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+resource ('find' + 'canonical customer Market') and the triggering input ('US ZIP'). It distinguishes itself from the read-oriented siblings by its mapping/normalization purpose, though without explicitly naming those siblings a 5 is not warranted.

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?

It provides explicit when-to-use context ('when the user provides a US ZIP and WCS needs the canonical customer Market') and a negative boundary ('Does not invent a Market when geography cannot answer'), which tells the agent not to force a result. No named alternatives are given, so it falls short of a 5.

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

get_rental_offersA
Read-onlyIdempotent
Inspect

Use this when the user asks what Rental containers WCS offers to a ZIP. rental_price is the recurring rental for the period. hauling_price is the actual hauling/delivery charge. first_period_plus_hauling is rental_price + hauling_price. Never describe first_period_plus_hauling as delivery, hauling, or "initial delivery."

ParametersJSON Schema
NameRequiredDescriptionDefault
zipYes5-digit US ZIP code

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare read-only, idempotent, non-destructive, closed-world behavior. The description's added value is mostly output-semantics guidance (what each price field means), which is real but framed as a correction. It discloses nothing about ordering, pagination, or empty-result behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the trigger condition, but over half the text is field-definition and a negative instruction ('Never describe...') that reads as output-format policing rather than tool-selection help. It is not padded with filler, but the emphasis is misplaced for a definition whose job is invocation.

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 single-param read tool with full annotations, the description plus schema is nearly sufficient to call it correctly. However, it never mentions the sibling get_sale_offers it is easily confused with, and with no output schema the field explanations only partially substitute for return-structure documentation.

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% (zip is documented as a 5-digit US ZIP), so the schema carries parameter meaning. The description names no parameter and adds no format or constraint detail, so baseline 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?

States a specific verb (offers) and resource (Rental containers) scoped to a ZIP, and the trigger condition (user asks what's offered to a ZIP). It does not explicitly distinguish itself from siblings like get_sale_offers or check_delivery, which it could have done given the naming overlap.

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?

Gives a clear triggering condition ('when the user asks what Rental containers WCS offers to a ZIP'), which implies when not to use it (sale offers go elsewhere). It names no alternative tool explicitly, so it stops short of full when/when-not routing.

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

get_sale_offersA
Read-onlyIdempotent
Inspect

Use this when the user asks what containers WCS can sell to a ZIP. Returns every customer-facing Sale offer including Wind and Watertight (WWT), Cargo Worthy (CWO), and One Trip (like-new used; SKU suffix OTC). Do not omit One Trip for used or storage. Does not invent prices.

ParametersJSON Schema
NameRequiredDescriptionDefault
zipYes5-digit US ZIP code

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already establish readOnly, idempotent, non-destructive behavior, so the bar is lower. The description adds the meaningful constraint 'Does not invent prices' (no fabricated pricing), which is genuinely useful behavioral context not derivable from the schema or annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, front-loaded with the trigger and the return contents. The final 'Does not invent prices' line is slightly tangential to conciseness but carries real behavioral information.

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?

With no output schema, the description carries the burden of describing returns and does so by enumerating the offer types returned. Coverage of what is returned plus the no-invented-prices caveat makes it largely complete for a single-parameter read tool.

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 description coverage is 100% for the single 'zip' parameter, so the schema already documents the '5-digit US ZIP code' format. The description only restates that ZIP scoping applies, adding no syntax or edge-case detail beyond the schema; baseline 3 is appropriate.

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?

State a specific verb ('Returns') and resource ('Sale offer'), scoped to selling containers to a ZIP. It is clearly distinguishable from the sibling get_rental_offers and enumerates the offer categories (WWT, CWO, One Trip) so an agent knows exactly what comes back.

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?

Explicitly states the trigger: 'Use this when the user asks what containers WCS can sell to a ZIP,' plus a guardrail not to omit One Trip for used/storage queries. It does not name the sibling alternatives (find_market, get_rental_offers) or state when not to use it, so it falls short of a 5.

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. 4 tool updates
    • First observedcheck_delivery
    • First observedfind_market
    • First observedget_rental_offers
    • First observedget_sale_offers

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides container shipping intelligence for AI agents, enabling demurrage & detention calculations, local charges, inland haulage rates, and CFS tariffs across multiple shipping lines, with pay-per-request USDC payments via x402.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Plan optimal container & truck loads: 3D layouts, right-size the container mix, and check utilization, centre of gravity, crush protection and securing across 200+ equipment types.
    6 npm
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources