← All WebMCP sites

spree.apparel.monster

Commercehttps://spree.apparel.monsterlisted as of 2026-08-01
Apparel Monster is an online apparel retailer selling men's, women's, and sportswear clothing. 116 products across 30 categories. Prices in USD. Powered by Spree Commerce with a public JSON:API…
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 62/100 (C).

Tools

search_productsanswerimperative
Search for apparel products by name, category (taxon permalink), price range, or stock status. Returns up to 20 results with name, price, and URL.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Keyword to match against product names, e.g. 'denim shirt'."
    },
    "taxon": {
      "type": "string",
      "description": "Permalink filter, e.g. 'categories/men/shirts' or 'collections/new-arrivals'."
    },
    "min_price": {
      "type": "number",
      "minimum": 0,
      "description": "Minimum price in USD."
    },
    "max_price": {
      "type": "number",
      "minimum": 0,
      "description": "Maximum price in USD."
    },
    "in_stock": {
      "type": "boolean",
      "description": "If true, only return purchasable items in stock.",
      "default": true
    },
    "sort": {
      "type": "string",
      "enum": [
        "popularity",
        "-popularity",
        "price",
        "-price",
        "name",
        "-name",
        "-available_on"
      ],
      "description": "Sort order.",
      "default": "-popularity"
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 20,
      "default": 10
    }
  }
}
get_productanswerimperative
Fetch full details for one product by slug, including variants (sizes/colors) and stock status.
Input schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "Product slug, e.g. 'denim-shirt'."
    }
  },
  "required": [
    "slug"
  ]
}
list_categoriesanswerimperative
Returns top-level and nested categories (taxons) of the apparel catalog — Men, Women, Sportswear, Brands, Collections, and promotional groupings.
Input schema
{
  "type": "object",
  "properties": {
    "parent": {
      "type": "string",
      "description": "Optional permalink filter for children of a given parent, e.g. 'categories/men'."
    }
  }
}
view_cartactimperative
Returns the agent's current cart (line items, quantities, totals). Creates an empty cart if none exists.
Input schema
{
  "type": "object",
  "properties": {}
}
add_to_cartactimperative
Adds a product variant (specific size/color combination) to the cart. Requires user confirmation. Returns the updated cart summary.
Input schema
{
  "type": "object",
  "properties": {
    "variant_id": {
      "type": "integer",
      "description": "The variant ID (NOT the product ID). Get this from get_product → variants."
    },
    "quantity": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10,
      "default": 1
    }
  },
  "required": [
    "variant_id"
  ]
}
apply_couponactimperative
Apply a promotion or discount code to the current cart. Returns whether the promo was accepted.
Input schema
{
  "type": "object",
  "properties": {
    "coupon_code": {
      "type": "string"
    }
  },
  "required": [
    "coupon_code"
  ]
}
go_to_checkouttransactimperative
Navigates the current tab to the checkout page for the active cart. Requires user confirmation.
Input schema
{
  "type": "object",
  "properties": {}
}
get_store_infoanswerimperative
Returns the store name, currency, API base URL, and pointers to all /.well-known/ discovery endpoints.
Input schema
{
  "type": "object",
  "properties": {}
}
Listings are sourced from public community registries and shown as reported.