← WebMCP Directory

elane-clothing-boutique.karanrajs.chatgpt.site

elane-clothing-boutique.karanrajs.chatgpt.site

live Unverified (seed import) Commerce 22 tools imperative implementation

Premium clothing with an agent-operable Style Studio and bring-your-own-agent outfit previews.

First seen 2026-09-07 · Last seen 2026-09-14 · Source: webmcp.com

Answer 8 · Act 14 · Transact 0 · Score: Not yet scored

Tool inspector

replan_capsule

act imperative

Use only for an existing multi-occasion capsule when a constraint changes. For one staged outfit, use the add, remove, or replace tools. Preserve locked pieces, reject exclusions, apply owned-versus-buy labels, update all 2 to 4 looks atomically, recalculate spend and reuse, and show a visible before/after explanation. Read the current state first and send the complete revised looks. This never changes the bag.

Page: /

Input schema

PropertyTypeRequiredDescription
title string no
brief string no
budgetCad integer no Revised maximum CAD spend for distinct pieces that are not marked owned.
size string no The size to show for the currently staged Style Studio look.
climate string no
dressCode string no
preferredColors array no Preferred colours for the revised capsule.
excludedColors array no Colours the customer does not want in the revised capsule.
ownedProductIds array no Catalog products the customer already owns. Their price is excluded from total spend.
excludedProductIds array no Catalog products the customer refuses to wear. None may appear in the revised looks.
lockedProductIds array no Currently staged catalog products that must be preserved in the revised capsule.
revisionNote string yes Concise summary of the changed real-life constraint, such as ceremony moved outdoors and budget reduced to CAD 1,500.
changeReasons array no
looks array yes
Raw JSON schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "brief": {
      "type": "string",
      "minLength": 1,
      "maxLength": 180
    },
    "budgetCad": {
      "type": "integer",
      "minimum": 100,
      "maximum": 10000,
      "description": "Revised maximum CAD spend for distinct pieces that are not marked owned."
    },
    "size": {
      "type": "string",
      "enum": [
        "XS",
        "S",
        "M",
        "L",
        "XL"
      ],
      "description": "The size to show for the currently staged Style Studio look."
    },
    "climate": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80
    },
    "dressCode": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80
    },
    "preferredColors": {
      "type": "array",
      "maxItems": 12,
      "uniqueItems": true,
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 32
      },
      "description": "Preferred colours for the revised capsule."
    },
    "excludedColors": {
      "type": "array",
      "maxItems": 12,
      "uniqueItems": true,
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 32
      },
      "description": "Colours the customer does not want in the revised capsule."
    },
    "ownedProductIds": {
      "type": "array",
      "maxItems": 100,
      "uniqueItems": true,
      "items": {
        "type": "integer",
        "minimum": 1,
        "description": "Catalog ID for a piece in the currently visible staged look."
      },
      "description": "Catalog products the customer already owns. Their price is excluded from total spend."
    },
    "excludedProductIds": {
      "type": "array",
      "maxItems": 100,
      "uniqueItems": true,
      "items": {
        "type": "integer",
        "minimum": 1,
        "description": "Catalog ID for a piece in the currently visible staged look."
      },
      "description": "Catalog products the customer refuses to wear. None may appear in the revised looks."
    },
    "lockedProductIds": {
      "type": "array",
      "maxItems": 100,
      "uniqueItems": true,
      "items": {
        "type": "integer",
        "minimum": 1,
        "description": "Catalog ID for a piece in the currently visible staged look."
      },
      "description": "Currently staged catalog products that must be preserved in the revised capsule."
    },
    "revisionNote": {
      "type": "string",
      "minLength": 1,
      "maxLength": 180,
      "description": "Concise summary of the changed real-life constraint, such as ceremony moved outdoors and budget reduced to CAD 1,500."
    },
    "changeReasons": {
      "type": "array",
      "maxItems": 24,
      "items": {
        "type": "object",
        "properties": {
          "productId": {
            "type": "integer",
            "minimum": 1,
            "description": "Catalog ID for a piece in the currently visible staged look."
          },
          "action": {
            "type": "string",
            "enum": [
              "added",
              "removed"
            ]
          },
          "reason": {
            "type": "string",
            "minLength": 1,
            "maxLength": 180
          }
        },
        "required": [
          "productId",
          "action",
          "reason"
        ],
        "additionalProperties": false
      }
    },
    "looks": {
      "type": "array",
      "minItems": 2,
      "maxItems": 4,
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 48,
            "description": "A concise editorial name for this look, such as Studio restraint."
          },
          "moment": {
            "type": "string",
            "minLength": 1,
            "maxLength": 48,
            "description": "The occasion or stop on the journey, such as 09:00 Studio."
          },
          "stylingNote": {
            "type": "string",
            "maxLength": 180,
            "description": "Optional concise reasoning that explains why the pieces work for this moment."
          },
          "topId": {
            "type": "integer",
            "minimum": 1,
            "description": "Optional catalog ID for the top."
          },
          "bottomId": {
            "type": "integer",
            "minimum": 1,
            "description": "Optional catalog ID for the bottom."
          },
          "dressId": {
            "type": "integer",
            "minimum": 1,
            "description": "Optional catalog ID for the dress; a dress cannot be combined with a top or bottom."
          },
          "layerId": {
            "type": "integer",
            "minimum": 1,
            "description": "Optional catalog ID for the outer layer."
          },
          "accessoryIds": {
            "type": "array",
            "minItems": 1,
            "maxItems": 4,
            "uniqueItems": true,
            "items": {
              "type": "integer",
              "minimum": 1,
              "description": "Catalog ID for an accessory matching the selected collection."
            },
            "description": "Optional list of up to four unique accessory IDs."
          }
        },
        "required": [
          "name",
          "moment"
        ],
        "anyOf": [
          {
            "required": [
              "topId"
            ]
          },
          {
            "required": [
              "bottomId"
            ]
          },
          {
            "required": [
              "dressId"
            ]
          },
          {
            "required": [
              "layerId"
            ]
          },
          {
            "required": [
              "accessoryIds"
            ]
          }
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "revisionNote",
    "looks"
  ],
  "additionalProperties": false
}

Similar websites

birmakine.com

birmakine.com

Bir Makine — Turkish marketplace for industrial machinery; browse current listings and find machines that fit your needs.

live Unverified Commerce
44 tools A3 / Act41 / T0 Not yet scored Seen 2026-09-14
search_listings scan_images_c2pa inspect_image_c2pa ilan_ara ilan_detay
Inspect tools
vaanzari.com

vaanzari.com

Explore handcrafted Banarasi sarees from Vaanzari, with artisan provenance, woven traditions and thoughtful customer care in India and worldwide.

live Unverified Commerce Transact tools
37 tools A17 / Act15 / T5 Not yet scored Seen 2026-09-14
scan_images_c2pa inspect_image_c2pa search-sarees get-saree compare-sarees
Inspect tools
demo.openforagents.com

demo.openforagents.com

Open for Agents WebMCP demos for declarative browser-agent actions.

live Unverified Commerce
27 tools A7 / Act20 / T0 Not yet scored Seen 2026-09-14
get_site_info_api list_post_types_api get_navigation_api list_posts_api search_posts_api
Inspect tools
ourmenuos.online

ourmenuos.online

The complete operating layer for modern businesses. Build your digital storefront, manage operations, and process payments instantly with 9 specialized industry…

live Unverified Commerce Transact tools
26 tools A8 / Act14 / T4 Not yet scored Seen 2026-09-14
wetaego_find_venue wetaego_search_catalog wetaego_get_item_details wetaego_create_cart wetaego_add_to_cart
Inspect tools

Related on Influzer