← WebMCP Directory

Tool tree

ai.westerncontainersales.com

Commerce
https://ai.westerncontainersales.com/
Browse shipping container types, regional markets, delivery guidelines, and purchasing information from Western Container Sales.
Explore capabilities

Tools verified

find_market_by_zipAction

Submit a 5-digit US ZIP code to locate the corresponding regional market depot and navigate to its local container pricing and inventory page.

View tool JSON
{
  "name": "find_market_by_zip",
  "kind": "act",
  "impl": "imperative",
  "description": "Submit a 5-digit US ZIP code to locate the corresponding regional market depot and navigate to its local container pricing and inventory page.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "zip_code": {
        "type": "string",
        "description": "5-digit US postal ZIP code (e.g. 75001, 90210, 60601)"
      }
    },
    "required": [
      "zip_code"
    ],
    "additionalProperties": false
  }
}
get_delivery_guidelinesAnswer

Read container delivery guidelines, site preparation checklist, space requirements, and clearance information.

View tool JSON
{
  "name": "get_delivery_guidelines",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read container delivery guidelines, site preparation checklist, space requirements, and clearance information.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
list_container_typesAnswer

List available shipping container types, standard sizes, and links to their product specification guides.

View tool JSON
{
  "name": "list_container_types",
  "kind": "answer",
  "impl": "imperative",
  "description": "List available shipping container types, standard sizes, and links to their product specification guides.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
list_market_locationsAnswer

List available regional shipping container market depots and cities served across the United States with links to their local pricing pages.

View tool JSON
{
  "name": "list_market_locations",
  "kind": "answer",
  "impl": "imperative",
  "description": "List available regional shipping container market depots and cities served across the United States with links to their local pricing pages.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
list_marketsAnswer

List nationwide service markets and depot locations with their state, city, and market page URLs, with optional filtering by state.

View tool JSON
{
  "name": "list_markets",
  "kind": "answer",
  "impl": "imperative",
  "description": "List nationwide service markets and depot locations with their state, city, and market page URLs, with optional filtering by state.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "state": {
        "type": "string",
        "description": "Optional state name to filter locations (e.g. 'Texas', 'California', 'Arizona')"
      }
    },
    "additionalProperties": false
  }
}
open_container_pageAction

Navigate to a specific container product guide page.

View tool JSON
{
  "name": "open_container_page",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to a specific container product guide page.",
  "inputSchema": {
    "type": "object",
    "required": [
      "url"
    ],
    "properties": {
      "url": {
        "type": "string",
        "description": "Relative or absolute URL of the container product guide page"
      }
    },
    "additionalProperties": false
  }
}
open_market_pageAction

Navigate to a local market pricing page for a selected city or state.

View tool JSON
{
  "name": "open_market_page",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to a local market pricing page for a selected city or state.",
  "inputSchema": {
    "type": "object",
    "required": [
      "market_url"
    ],
    "properties": {
      "market_url": {
        "type": "string",
        "description": "The URL or path of the market page (e.g. /shipping-containers-for-sale/texas/dallas)"
      }
    },
    "additionalProperties": false
  }
}
open_product_guideAction

Navigate to a container specification and product guide page.

View tool JSON
{
  "name": "open_product_guide",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to a container specification and product guide page.",
  "inputSchema": {
    "type": "object",
    "required": [
      "product_guide_url"
    ],
    "properties": {
      "product_guide_url": {
        "type": "string",
        "description": "The URL or path of the container product guide (e.g. /buy-20ft-shipping-containers)"
      }
    },
    "additionalProperties": false
  }
}