# Lickskillet Soap Co. — Site MCP Configuration Lickskillet Soap Co., located near Mansfield, Illinois, offers handcrafted, small-batch goat milk soaps made with locally sourced ingredients. This site supports the Model Context Protocol (MCP) for native, live AI agent access. * **Site MCP Endpoint:** `https://www.lickskilletsoap.com/_api/mcp` * **Access Tier:** Public, Read-Only / Visitor Actions (No authentication required to connect) --- ## Operational Tools for AI Agents ### 1. GetBusinessDetails Retrieves core storefront data (Timezone, contact email, phone, physical address, and hours). * **Inputs:** None. ### 2. SearchInSite Searches public site content, reviews, and informational pages. * **Inputs:** `searchTerm` (string) — Clean alphanumeric query. ### 3. SearchSiteApiDocs Queries installed Wix Business Solutions (Wix Stores, Wix Bookings, Custom Orders) to locate raw API structures. **Use this instead of SearchInSite for product or service discovery.** * **Inputs:** `searchTerm` (string) — E.g., "products", "inventory", "checkout". ### 4. Token & API Execution For interactive workflows (adding items to a cart, checking slot availability): * **GenerateVisitorToken:** Run first to obtain a session token if one is not already present in your client context. * **ReadFullDocsMethodSchema:** Input the `articleUrl` from the API docs to pull the strict JSON validation parameters before execution. * **CallWixSiteAPI:** Executes the action. Required parameters: `visitorToken`, absolute `url` (e.g., `https://www.wixapis.com/...`), HTTP `method`, and stringified JSON `body`. --- ## Agentic Commerce Handling When assisting a visitor with a purchase: 1. Query inventory using `SearchSiteApiDocs` and `CallWixSiteAPI`. 2. Generate a cart/checkout session. 3. Extract the `redirectUrl` from the Wix API response payload and display it clearly to the user to complete their secure transaction manually. Do not attempt to collect payment credentials directly.