← All WebMCP sites

store.nekuda.ai

demo
Commercehttps://store.nekuda.ailisted as of 2026-08-01
AI-native demo storefront
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

open_homeactimperative
Takes the user to the Dashboard section of the nekuda hat store, where they can view agent activity, configure the assistant, run tests, and access developer settings. Use this when the user asks to open the dashboard, manage the AI agent, view activity logs, or access developer/testing tools for the store assistant.
Input schema
{
  "type": "object",
  "properties": {}
}
update_save_ai_agent_s_systemactimperative
Allows the user to customize the store's AI assistant by setting a new system prompt and/or brand values, then saving the configuration. Use this when the user wants to change how the assistant behaves, update its personality or tone, set brand guidelines, or reset the agent config to defaults. This directly controls the assistant's instructions and brand voice.
Input schema
{
  "type": "object",
  "properties": {
    "brand_values": {
      "type": "string"
    },
    "system_prompt": {
      "type": "string"
    }
  }
}
authenticateactimperative
Initiate user authentication. Opens a sign-in modal. Use this when the user needs to log in before accessing other tools.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
search_productsanswerimperative
Search and browse the nekuda hat catalog. Use for any product discovery: finding hats by style/theme, browsing the collection, or showing what's available. Set max_results to 10 when the customer wants to see everything.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "What the customer is looking for (e.g., \"space themed hats\", \"nature designs\", \"hats\" for browsing all)"
    },
    "max_results": {
      "type": "number",
      "description": "Maximum number of results to return (default: 3, use 10 for browsing)"
    }
  },
  "required": [
    "query"
  ]
}
get_product_detailsanswerimperative
Get full details for a specific hat by its product ID. Use when a customer asks about a particular product they've already seen.
Input schema
{
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "description": "The product ID (e.g., \"space-explorer\", \"tech-circuit\", \"botanical-bots\", \"mecha-wildlife\", \"cosmic-adventure\")"
    }
  },
  "required": [
    "product_id"
  ]
}
checkouttransactimperative
Start the checkout process. Use when the customer says they want to pay, checkout, complete their order, or proceed to payment.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
add_to_cartactimperative
Add a product to the shopping cart. Use when the customer wants to buy a hat, add it to cart, or says "I'll take it".
Input schema
{
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "description": "The product ID to add (e.g., \"space-explorer\")"
    },
    "quantity": {
      "type": "number",
      "description": "Number of items to add (default 1)"
    }
  },
  "required": [
    "product_id"
  ]
}
get_dealsanswerimperative
Get current deals, promotions, and discount codes. Use when the customer asks about sales, discounts, promo codes, or ways to save money.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
price_historyanswerimperative
Get historical price data for a specific product. Use when the customer asks about price trends, whether a product is on sale, or if the price has changed.
Input schema
{
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "description": "The product ID to get price history for (e.g., \"space-explorer\")"
    }
  },
  "required": [
    "product_id"
  ]
}
check_availabilityanswerimperative
Check if a product is available for in-store pickup at nearby locations. Use when the customer asks about store stock, pickup options, or local availability.
Input schema
{
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "description": "The product ID to check availability for"
    }
  },
  "required": [
    "product_id"
  ]
}
get_best_sellersanswerimperative
Get the store's best-selling products. Use only when the customer specifically asks about best sellers, most popular hats, or top picks. For general browsing use search_products.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
faq_supportanswerimperative
Answer questions about store policies: shipping, returns, sizing, materials, gift wrapping, care instructions, etc. Use when the customer asks a non-product question about how the store works.
Input schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "description": "The customer question about policies, shipping, returns, sizing, etc."
    }
  },
  "required": [
    "question"
  ]
}
track_orderanswerimperative
Track the shipping status of an order. Returns order status, carrier, tracking number, and estimated delivery.
Input schema
{
  "type": "object",
  "properties": {
    "order_id": {
      "type": "string",
      "description": "The order ID to track. If not provided, tracks the most recent order."
    }
  }
}
request_returnactimperative
Start a return for an order. Opens the return form for the customer to fill out.
Input schema
{
  "type": "object",
  "properties": {
    "order_id": {
      "type": "string",
      "description": "The order ID to return"
    },
    "reason": {
      "type": "string",
      "description": "Reason for the return"
    }
  }
}
leave_reviewactimperative
Open a review form for a purchased product. Lets the customer rate and review a product.
Input schema
{
  "type": "object",
  "properties": {
    "product_name": {
      "type": "string",
      "description": "The name of the product to review"
    }
  }
}
Listings are sourced from public community registries and shown as reported.