{
  "name": "hrsu-store",
  "version": "1.0.0",
  "description": "HRSU Indore Store — MCP server for Calcium Nitrate ordering",
  "protocol": "MCP Streamable HTTP",
  "protocol_version": "2025-03-26",
  "spec": "https://modelcontextprotocol.io/specification/2025-03-26",
  "endpoint": "POST https://hrsuindore.com/api/mcp",
  "tools": [
    {
      "name": "list_products",
      "description": "List all products available in the HRSU Indore store. Returns SKUs, names, sizes, prices, and availability. Call this first before any other tool."
    },
    {
      "name": "get_product",
      "description": "Get full technical details for one product — specifications, applications, documents, and pricing — by SKU. Use list_products first if you need the SKU."
    },
    {
      "name": "get_shipping_info",
      "description": "Get shipping rates, free-delivery threshold, and delivery time estimates for India and international destinations."
    },
    {
      "name": "get_company_info",
      "description": "Get HRSU Indore contact details, address, WhatsApp link, and website URLs."
    },
    {
      "name": "calculate_order_total",
      "description": "Calculate the exact price and shipping cost for an order before placing it.\nAlways call this before place_order so the customer can confirm the total.\nReturns product total, shipping cost (₹0 if eligible for free delivery), grand total, and payment instructions."
    },
    {
      "name": "place_order",
      "description": "Place an order for Calcium Nitrate from HRSU Indore.\n\nWORKFLOW — always follow this order:\n1. list_products → show customer what is available\n2. calculate_order_total → confirm exact price + shipping before proceeding\n3. Collect customer details (name, phone, address) and get explicit confirmation\n4. place_order → submit\n\nPAYMENT: No payment is taken at this step. After the order is submitted:\n- HRSU calls or WhatsApps the customer within 1 business day to confirm\n- Customer pays via UPI or NEFT/IMPS bank transfer after phone confirmation\n- HRSU dispatches with tracking once payment is received\n\nReturns an order reference (HRSU-XXXXXX) and next steps for the customer."
    },
    {
      "name": "list_blog_posts",
      "description": "List HRSU Indore blog posts — technical guides and market insights on calcium nitrate. Optionally filter by category. Call this to discover what content exists before get_blog_post."
    },
    {
      "name": "get_blog_post",
      "description": "Get the full content and metadata for one blog post by its URL. Use list_blog_posts first to find the URL."
    }
  ],
  "how_to_connect": {
    "claude_desktop": {
      "config_file": "claude_desktop_config.json",
      "entry": {
        "hrsu-store": {
          "url": "https://hrsuindore.com/api/mcp"
        }
      }
    },
    "direct": "POST JSON-RPC 2.0 messages to https://hrsuindore.com/api/mcp",
    "openapi": "https://hrsuindore.com/openapi.json"
  }
}