{
  "spec": "webmcp/0.1",
  "name": "ManSarathi Storefront",
  "description": "Premium Indian stationery — journals, planners, pencils, and gift bundles from Hyderabad. Public tools for product discovery and buying recommendations.",
  "site": "https://mansarathi.com",
  "llmsTxt": "https://mansarathi.com/llms.txt",
  "openApi": "https://mansarathi.com/.well-known/openapi.json",
  "tools": [
    {
      "name": "list-products",
      "description": "List active ManSarathi stationery products with names, slugs, prices in INR, and availability. Use when the user asks what products exist or wants to browse the catalog.",
      "url": "https://api.mansarathi.com/api/products",
      "method": "GET",
      "parameters": [
        {
          "name": "limit",
          "type": "integer",
          "description": "Max products to return (default 20, max 48)"
        },
        {
          "name": "category",
          "type": "string",
          "description": "Filter by category slug, e.g. journals, planners, gifts-bundles"
        }
      ]
    },
    {
      "name": "get-product",
      "description": "Get full details for one product by URL slug — price, description, variants, inventory, and images. Use when recommending or comparing a specific item.",
      "url": "https://api.mansarathi.com/api/products/{slug}",
      "method": "GET",
      "parameters": [
        {
          "name": "slug",
          "type": "string",
          "description": "Product slug, e.g. money-log, daily-book, upahaar-bundle",
          "required": true
        }
      ]
    },
    {
      "name": "get-buying-guide",
      "description": "Intent-based product recommendations — budget tracking, daily journaling, goal planning, gifting, pencils, and add-ons. Returns structured JSON buying guide with live prices.",
      "url": "https://api.mansarathi.com/api/agent/buying-guide",
      "method": "GET",
      "parameters": []
    },
    {
      "name": "get-buying-guide-markdown",
      "description": "Same buying guide as markdown for LLM context windows that prefer plain text.",
      "url": "https://mansarathi.com/llms/buying-guide.md",
      "method": "GET",
      "parameters": []
    },
    {
      "name": "check-delivery",
      "description": "Check courier delivery serviceability for a product to an Indian pincode. Requires product slug and six-digit pincode.",
      "url": "https://api.mansarathi.com/api/products/{slug}/serviceability",
      "method": "GET",
      "parameters": [
        {
          "name": "slug",
          "type": "string",
          "description": "Product slug, e.g. money-log",
          "required": true
        },
        {
          "name": "pincode",
          "type": "string",
          "description": "Six-digit Indian pincode query parameter",
          "required": true
        }
      ]
    }
  ]
}
